mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
14 lines
293 B
Rust
14 lines
293 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() {
|
|
}
|