Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
struct Foo{
f : isize,
}
pub fn main() {
let f = Foo{f: 1};
match f {
Foo{f: 0} => panic!(),
Foo{..} => (),
Foo{f: _f} => (),
_ => (),