11 lines
86 B
Rust
11 lines
86 B
Rust
#[repr(C)]
|
|
struct A {
|
|
x: i32,
|
|
y: f32,
|
|
}
|
|
|
|
#[repr(C)]
|
|
struct B {
|
|
data: A,
|
|
}
|