9 lines
120 B
Rust
9 lines
120 B
Rust
|
// xfail-fast
|
||
|
// aux-build:packed.rs
|
||
|
|
||
|
extern mod packed;
|
||
|
|
||
|
fn main() {
|
||
|
assert_eq!(sys::size_of::<packed::S>(), 5);
|
||
|
}
|