Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
struct S;
fn main() {
match Some(&S) {
Some(&S) => {},
_x => unreachable!()
}
None => unreachable!()