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