2017-03-10 13:24:50 -06:00
|
|
|
#![crate_name="foo"]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2018-11-06 10:07:17 -06:00
|
|
|
// (#55495: The --error-format is to sidestep an issue in our test harness)
|
2020-11-18 07:49:46 -06:00
|
|
|
// compile-flags: -C opt-level=0 --error-format human -Z print-fuel=foo
|
2020-11-18 10:27:37 -06:00
|
|
|
// check-pass
|
2017-03-10 13:24:50 -06:00
|
|
|
|
|
|
|
struct S1(u8, u16, u8);
|
|
|
|
struct S2(u8, u16, u8);
|
|
|
|
struct S3(u8, u16, u8);
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|