rust/tests/ui/consts/packed_pattern2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
434 B
Rust
Raw Normal View History

2019-06-11 14:17:26 +00:00
// run-pass
#[derive(PartialEq, Eq, Copy, Clone)]
#[repr(packed)]
struct Foo {
field: (u8, u16),
}
#[derive(PartialEq, Eq, Copy, Clone)]
#[repr(align(2))]
struct Bar {
a: Foo,
}
const FOO: Bar = Bar {
a: Foo {
field: (5, 6),
}
};
fn main() {
match FOO {
Bar { a: Foo { field: (5, 6) } } => {},
FOO => unreachable!(), //~ WARNING unreachable pattern
2019-06-11 14:17:26 +00:00
_ => unreachable!(),
}
}