blob: 14781a7d3f7ea937b8033865b084fb19966ec0cd [file] [log] [blame]
enum Foo {
Bar(isize)
}
fn main() {
match Foo::Bar(1) {
Foo { i } => () //~ ERROR expected struct, variant or union type, found enum `Foo`
}
}