mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +00:00
9 lines
140 B
Plaintext
9 lines
140 B
Plaintext
//@ run-rustfix
|
|
|
|
pub fn foo<'a>(_s: &'a usize) -> bool { true }
|
|
//~^ ERROR missing `fn` for function definition
|
|
|
|
fn main() {
|
|
foo(&2);
|
|
}
|