rust/tests/ui/pub/pub-ident-fn-with-lifetime.rs
2023-01-11 09:32:08 +00:00

9 lines
138 B
Rust

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