summaryrefslogtreecommitdiffstats
path: root/tests/rust/prefixed_struct_literal_deep.rs
blob: bfa2d8dc7c85ced58844efc0b8e7a19da6de0fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#[repr(C)]
struct Foo {
    a: i32,
    b: u32,
    bar: Bar,
}

#[repr(C)]
struct Bar {
    a: i32,
}

pub const VAL: Foo = Foo {
    a: 42,
    b: 1337,
    bar: Bar { a: 323 },
};

#[no_mangle]
pub extern "C" fn root(x: Foo) {}