blob: a0bfd7834cd74974828a1bbb32112014ce02cb60 [file] [log] [blame]
//@ edition:2015
// 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() {}