mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 12:39:53 +00:00
11 lines
137 B
Plaintext
11 lines
137 B
Plaintext
//@ run-rustfix
|
|
|
|
pub fn foo(_s: usize) { bar() }
|
|
//~^ ERROR missing `fn` for function definition
|
|
|
|
fn bar() {}
|
|
|
|
fn main() {
|
|
foo(2);
|
|
}
|