mirror of https://github.com/rust-lang/rust
14 lines
295 B
Rust
14 lines
295 B
Rust
#![crate_name="foo"]
|
|
#![allow(dead_code)]
|
|
|
|
// (#55495: The --error-format is to sidestep an issue in our test harness)
|
|
//@ compile-flags: -C opt-level=0 --error-format human -Z print-fuel=foo
|
|
//@ check-pass
|
|
|
|
struct S1(u8, u16, u8);
|
|
struct S2(u8, u16, u8);
|
|
struct S3(u8, u16, u8);
|
|
|
|
fn main() {
|
|
}
|