summaryrefslogtreecommitdiffstats
path: root/tests/ui/fn-in-pat.rs
blob: 2d7c86b8666f855347402710f07e3758d9b0d1f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct A {}

impl A {
    fn new() {}
}

fn hof<F>(_: F) where F: FnMut(()) {}

fn ice() {
    hof(|c| match c {
        A::new() => (), //~ ERROR expected tuple struct or tuple variant, found associated function
        _ => ()
    })
}

fn main() {}