about summary refs log tree commit diff
path: root/tests/ui/issues/issue-28971.rs
blob: 8e7a2fe0ef209aafff6d781b7476ba6cfd205ef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
enum Foo {
    Bar(u8)
}
fn main(){
    foo(|| {
        match Foo::Bar(1) {
            Foo::Baz(..) => (),
            //~^ ERROR no variant or associated item named `Baz` found
            _ => (),
        }
    });
}

fn foo<F>(f: F) where F: FnMut() {
    f();
    //~^ ERROR: cannot borrow
}