blob: d2aea4e0690dc3c6b3b98d71cabaf71665a28a42 [file] [log] [blame]
//@ run-rustfix
pub fn foo(_s: usize) -> bool { true }
//~^ ERROR missing `fn` for function definition
fn main() {
foo(2);
}