summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/usefulness/refutable-pattern-in-fn-arg.rs
blob: 4203dd94d43aad53fd8e0876508f1fc4c4551495 (plain)
1
2
3
4
5
6
fn main() {
    let f = |3: isize| println!("hello");
    //~^ ERROR refutable pattern in function argument
    //~| `..=2_isize` and `4_isize..` not covered
    f(4);
}