mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
339 B
Rust
20 lines
339 B
Rust
// run-pass
|
|
|
|
#[derive(PartialEq, Eq, Copy, Clone)]
|
|
#[repr(packed)]
|
|
struct Foo {
|
|
field: (i64, u32, u32, u32),
|
|
}
|
|
|
|
const FOO: Foo = Foo {
|
|
field: (5, 6, 7, 8),
|
|
};
|
|
|
|
fn main() {
|
|
match FOO {
|
|
Foo { field: (5, 6, 7, 8) } => {},
|
|
FOO => unreachable!(), //~ WARNING unreachable pattern
|
|
_ => unreachable!(),
|
|
}
|
|
}
|