Sign in
fuchsia
/
third_party
/
rust
/
6d569f769c3d7becbd566b4fec5baf9f11e098e1
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
author
/
if.rs
blob: 946088ab34619667e9c6e676f47b5839fd0e2944 [
file
] [
log
] [
blame
]
#[
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
{
};
}