mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:39:59 +00:00
7 lines
124 B
Rust
7 lines
124 B
Rust
pub bar<'a>(&self, _s: &'a usize) -> bool { true }
|
|
//~^ ERROR missing `fn` for method definition
|
|
|
|
fn main() {
|
|
bar(2);
|
|
}
|