blob: 33dc3c3525888bd79f3ec7e4310bd015e4e66385 [file] [edit]
//@ check-pass
// We are only checking `clippy::author` here, we do not care if other lints trigger
#![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 {
};
}