Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
error-codes
/
E0408.rs
blob: e91a98f3857015000c4846f89501922efaebd323 [
file
] [
log
] [
blame
]
fn
main
()
{
let
x
=
Some
(
0
);
match
x
{
Some
(
y
)
|
None
=>
{}
//~ ERROR variable `y` is not bound in all patterns
_
=>
()
}
}