Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn main() {
let f = |3: isize| println!("hello");
//~^ ERROR refutable pattern in function argument
//~| `_` not covered
f(4);
}