mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 04:52:40 +00:00
9 lines
131 B
Plaintext
9 lines
131 B
Plaintext
//@ run-rustfix
|
|
|
|
pub fn foo(_s: usize) -> bool { true }
|
|
//~^ ERROR missing `fn` for function definition
|
|
|
|
fn main() {
|
|
foo(2);
|
|
}
|