rust/src/test/ui/refutable-pattern-in-fn-arg.rs
2018-12-25 21:08:33 -07:00

6 lines
137 B
Rust

fn main() {
let f = |3: isize| println!("hello");
//~^ ERROR refutable pattern in function argument: `_` not covered
f(4);
}