summaryrefslogtreecommitdiffstats
path: root/src/test/ui/optimization-fuel-0.rs
blob: 2643dbea1c4347f4112066fe0397a3567663c033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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);
}