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