blob: 63e6eca151600ffed09c849482d3f8c3d3f775ff [file] [log] [blame]
// run-rustfix
pub foo<'a>(_s: &'a usize) -> bool { true }
//~^ ERROR missing `fn` for function definition
fn main() {
foo(&2);
}