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

9 lines
130 B
Rust

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