Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
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
;
}
}