27 lines
373 B
Rust
27 lines
373 B
Rust
//@run-pass
|
|
#![feature(offset_of_slice)]
|
|
|
|
use std::mem::offset_of;
|
|
|
|
#[repr(C)]
|
|
struct S {
|
|
a: u8,
|
|
b: (u8, u8),
|
|
c: [i32],
|
|
}
|
|
|
|
#[repr(C)]
|
|
struct T {
|
|
x: i8,
|
|
y: S,
|
|
}
|
|
|
|
type Tup = (i16, [i32]);
|
|
|
|
fn main() {
|
|
assert_eq!(offset_of!(S, c), 4);
|
|
assert_eq!(offset_of!(T, y), 4);
|
|
assert_eq!(offset_of!(T, y.c), 8);
|
|
assert_eq!(offset_of!(Tup, 1), 4);
|
|
}
|