rustc/tests/ui/pub/pub-ident-fn-with-lifetime-2.rs
2024-09-09 14:07:22 +02:00

7 lines
124 B
Rust

pub bar<'a>(&self, _s: &'a usize) -> bool { true }
//~^ ERROR missing `fn` for method definition
fn main() {
bar(2);
}