Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
enum Foo { Alpha, Beta(isize) }
fn main() {
match Foo::Alpha {
Foo::Alpha | Foo::Beta(i) => {}
//~^ ERROR variable `i` is not bound in all patterns
}