]> git.proxmox.com Git - rustc.git/blob - src/test/ui/pattern/usefulness/refutable-pattern-in-fn-arg.rs
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / pattern / usefulness / refutable-pattern-in-fn-arg.rs
1 fn main() {
2 let f = |3: isize| println!("hello");
3 //~^ ERROR refutable pattern in function argument: `_` not covered
4 f(4);
5 }