Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
expr
/
if
/
attrs
/
builtin-if-attr.rs
blob: 3c6606acdca78d00274a6b0a8edc3e77abe086de [
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
;
}
}