blob: f0a1e2d006179e0949b4e5abedc2dc8345b4aa97 [file] [log] [blame]
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();
}