rust/tests/ui/binding/match-enum-struct-1.rs
2024-02-16 20:02:50 +00:00

20 lines
260 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!(),
}
}