summary refs log tree commit diff
path: root/src/test/run-pass/packed-struct-size-xc.rs
blob: 336df24586a9fbe84b46e44d8d4698dfda92cc54 (plain)
1
2
3
4
5
6
7
8
9
10
// xfail-fast
// aux-build:packed.rs

extern mod packed;

use std::mem;

pub fn main() {
    assert_eq!(mem::size_of::<packed::S>(), 5);
}