Sign in
rust
/
rust
/
36ba2c7712052d731a7082d0eba5ed3d9d56c133
/
.
/
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
()
{}