mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
261 B
Rust
17 lines
261 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
|
|
enum E {
|
|
Foo{f: isize, b: bool},
|
|
Bar,
|
|
}
|
|
|
|
pub fn main() {
|
|
let e = E::Foo{f: 0, b: false};
|
|
match e {
|
|
E::Foo{f: 1, b: true} => panic!(),
|
|
E::Foo{b: false, f: 0} => (),
|
|
_ => panic!(),
|
|
}
|
|
}
|