Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
author
/
if.rs
blob: abefc34cf6b3e60bdd8dda99f3e9cf21acdb8dcd [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
clippy
::
all
)]
fn
main
()
{
#[
clippy
::
author
]
let
_
=
if
true
{
1
==
1
;
}
else
{
2
==
2
;
};
let
a
=
true
;
#[
clippy
::
author
]
if
let
true
=
a
{
}
else
{
};
}