17 lines
222 B
Rust
17 lines
222 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
|
|
enum E {
|
|
Foo{f: isize},
|
|
Bar,
|
|
}
|
|
|
|
pub fn main() {
|
|
let e = E::Foo{f: 0};
|
|
match e {
|
|
E::Foo{f: 1} => panic!(),
|
|
E::Foo{..} => (),
|
|
_ => panic!(),
|
|
}
|
|
}
|