Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
liveness-if-with-else.rs
blob: 29adc91a4acc305bfd13eb57146e94a505068cfb [
file
]
fn
foo
(
x
:
int
)
{
log
(
debug
,
x
);
}
fn
main
()
{
let
x
:
int
;
if
1
>
2
{
debug
!(
"whoops"
);
}
else
{
x
=
10
;
}
foo
(
x
);
//~ ERROR use of possibly uninitialized variable: `x`
}