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