Sign in
◑
Theme
rust
/
rust
/
df734af6ae8a7fdc287c5da23fe610573bf2a761
/
.
/
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
()
{}