summaryrefslogtreecommitdiffstats
path: root/src/test/ui/enum/enum-variant-type-2.rs
blob: 27286a0a3ddda5b8c690c9aa568791ec86c9ed8c (plain)
1
2
3
4
5
6
7
8
9
// 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() {}