rust/tests/ui/pub/pub-ident-fn-with-lifetime.rs

9 lines
139 B
Rust

//@ run-rustfix
pub foo<'a>(_s: &'a usize) -> bool { true }
//~^ ERROR missing `fn` for function definition
fn main() {
foo(&2);
}