Sign in
◑
Theme
rust
/
rust
/
ef9928781a40b84fa3e768ea0da393e47352bfee
/
.
/
tests
/
ui
/
enum
/
enum-variant-type-2.rs
blob: 27286a0a3ddda5b8c690c9aa568791ec86c9ed8c [
file
]
// 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
()
{}