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-10 19:13:59 +00:00
#![crate_name="foo"]
use std::mem::size_of;
// compile-flags: -Z fuel=foo=0
2017-03-10 19:13:59 +00:00
2022-07-25 20:36:03 +00:00
#[allow(unused_tuple_struct_fields)]
2017-03-10 19:13:59 +00:00
struct S1(u8, u16, u8);
2022-07-25 20:36:03 +00:00
#[allow(unused_tuple_struct_fields)]
2017-03-10 19:13:59 +00:00
struct S2(u8, u16, u8);
fn main() {
assert_eq!(size_of::<S1>(), 6);
assert_eq!(size_of::<S2>(), 6);
}