rust/tests/ui/pattern/usefulness/refutable-pattern-in-fn-arg.rs

6 lines
137 B
Rust
Raw Normal View History

fn main() {
let f = |3: isize| println!("hello");
2014-06-19 18:55:12 +00:00
//~^ ERROR refutable pattern in function argument: `_` not covered
f(4);
}