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

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

19 lines
321 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=1
2017-03-10 19:13:59 +00:00
#[allow(dead_code)]
2017-03-10 19:13:59 +00:00
struct S1(u8, u16, u8);
#[allow(dead_code)]
2017-03-10 19:13:59 +00:00
struct S2(u8, u16, u8);
fn main() {
let optimized = (size_of::<S1>() == 4) as usize
+(size_of::<S2>() == 4) as usize;
assert_eq!(optimized, 1);
}