summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/author/if.rs
blob: 2e9cb1466d0b5616a85770274cff4b602e7b687d (plain)
1
2
3
4
5
6
7
8
9
10
#[allow(clippy::all)]

fn main() {
    #[clippy::author]
    let _ = if true {
        1 == 1;
    } else {
        2 == 2;
    };
}