rust/tests/ui/optimization-fuel-0.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
301 B
Rust
Raw Normal View History

// run-pass
2017-03-11 03:13:59 +08:00
#![crate_name="foo"]
use std::mem::size_of;
// compile-flags: -Z fuel=foo=0
2017-03-11 03:13:59 +08:00
2022-07-26 04:36:03 +08:00
#[allow(unused_tuple_struct_fields)]
2017-03-11 03:13:59 +08:00
struct S1(u8, u16, u8);
2022-07-26 04:36:03 +08:00
#[allow(unused_tuple_struct_fields)]
2017-03-11 03:13:59 +08:00
struct S2(u8, u16, u8);
fn main() {
assert_eq!(size_of::<S1>(), 6);
assert_eq!(size_of::<S2>(), 6);
}