Sign in
fuchsia
/
third_party
/
rust
/
830bd8b6f4feb8665c8865beb20ffb424e8d8ee6
/
.
/
tests
/
ui
/
expr
/
if
/
attrs
/
gate-whole-expr.rs
blob: bab01592c247b68e225792767e9e6e386abbccce [
file
]
//@ run-pass
fn
main
()
{
let
x
=
1
;
#[
cfg
(
FALSE
)]
if
false
{
x
=
2
;
}
else
if
true
{
x
=
3
;
}
else
{
x
=
4
;
}
assert_eq
!(
x
,
1
);
}