rust/src/test/run-pass/packed-struct-size-xc.rs
2014-01-03 15:30:54 -08:00

11 lines
139 B
Rust

// xfail-fast
// aux-build:packed.rs
extern mod packed;
use std::mem;
pub fn main() {
assert_eq!(mem::size_of::<packed::S>(), 5);
}