rust/tests/ui/binding/match-enum-struct-1.rs
2023-01-11 09:32:08 +00:00

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