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