Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
expr
/
if
/
attrs
/
builtin-if-attr.rs
blob: 7e290661501c9c36eb05c0e395a9e27e5c5b0bc3 [
file
] [
log
] [
blame
]
// check-pass
fn
main
()
{
#[
allow
(
unused_variables
)]
if
true
{
let
a
=
1
;
}
else
if
false
{
let
b
=
1
;
}
else
{
let
c
=
1
;
}
}