mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 12:17:37 +00:00
7 lines
145 B
Rust
7 lines
145 B
Rust
fn main() {
|
|
let f = |3: isize| println!("hello");
|
|
//~^ ERROR refutable pattern in function argument
|
|
//~| `_` not covered
|
|
f(4);
|
|
}
|