blob: 27286a0a3ddda5b8c690c9aa568791ec86c9ed8c [file] [log] [blame]
// Test that enum variants are not actually types.
enum Foo {
Bar
}
fn foo(x: Foo::Bar) {} //~ ERROR expected type, found variant `Foo::Bar`
fn main() {}