rust-clippy/tests/ui/author/if.rs

18 lines
217 B
Rust
Raw Normal View History

#[allow(clippy::all)]
fn main() {
#[clippy::author]
let _ = if true {
1 == 1;
} else {
2 == 2;
};
2021-10-29 01:39:41 +00:00
let a = true;
#[clippy::author]
if let true = a {
} else {
};
}