Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// 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!(),
E::Foo{f: _f} => (),