rust/src/test/run-pass/packed-struct-size-xc.rs

9 lines
120 B
Rust
Raw Normal View History

2013-05-06 09:35:27 -05:00
// xfail-fast
// aux-build:packed.rs
extern mod packed;
fn main() {
assert_eq!(sys::size_of::<packed::S>(), 5);
}