Sign in
rust
/
rust
/
fe98ddcfcfb6f185dbf4adeaf439d8a756da0273
/
.
/
tests
/
ui
/
enum
/
enum-variant-type-2.rs
blob: a0bfd7834cd74974828a1bbb32112014ce02cb60 [
file
]
//@ 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
()
{}