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

9 lines
140 B
Rust

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