Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-17405.rs
blob: 14781a7d3f7ea937b8033865b084fb19966ec0cd [
file
] [
log
] [
blame
] [
edit
]
enum
Foo
{
Bar
(
isize
)
}
fn
main
()
{
match
Foo
::
Bar
(
1
)
{
Foo
{
i
}
=>
()
//~ ERROR expected struct, variant or union type, found enum `Foo`
}
}