rust/tests/ui/binding/match-enum-struct-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
259 B
Rust
Raw Normal View History

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