auto merge of #6265 : sanxiyn/rust/xc-packed, r=nikomatsakis
This commit is contained in:
commit
a5891bebc1
3 changed files with 14 additions and 0 deletions
5
src/test/auxiliary/packed.rs
Normal file
5
src/test/auxiliary/packed.rs
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#[packed]
|
||||
struct S {
|
||||
a: u8,
|
||||
b: u32
|
||||
}
|
||||
8
src/test/run-pass/packed-struct-size-xc.rs
Normal file
8
src/test/run-pass/packed-struct-size-xc.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
// xfail-fast
|
||||
// aux-build:packed.rs
|
||||
|
||||
extern mod packed;
|
||||
|
||||
fn main() {
|
||||
assert_eq!(sys::size_of::<packed::S>(), 5);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue