Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-rustfix
pub foo(_s: usize) -> bool { true }
//~^ ERROR missing `fn` for function definition
fn main() {
foo(2);
}