Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-2849.rs
blob: 787ab0e2896043ad92cb0e22a8b937ddd298e622 [
file
] [
log
] [
blame
] [
edit
]
enum
Foo
{
Alpha
,
Beta
(
isize
)
}
fn
main
()
{
match
Foo
::
Alpha
{
Foo
::
Alpha
|
Foo
::
Beta
(
i
)
=>
{}
//~^ ERROR variable `i` is not bound in all patterns
}
}