mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
301 B
Rust
18 lines
301 B
Rust
// run-pass
|
|
|
|
#![crate_name="foo"]
|
|
|
|
use std::mem::size_of;
|
|
|
|
// compile-flags: -Z fuel=foo=0
|
|
|
|
#[allow(unused_tuple_struct_fields)]
|
|
struct S1(u8, u16, u8);
|
|
#[allow(unused_tuple_struct_fields)]
|
|
struct S2(u8, u16, u8);
|
|
|
|
fn main() {
|
|
assert_eq!(size_of::<S1>(), 6);
|
|
assert_eq!(size_of::<S2>(), 6);
|
|
}
|