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