rustc/tests/ui/pub/pub-ident-fn-with-lifetime.fixed
2024-06-21 09:39:33 +02:00

9 lines
140 B
Plaintext

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