mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
11 lines
133 B
Rust
11 lines
133 B
Rust
|
#[allow(clippy::all)]
|
||
|
|
||
|
fn main() {
|
||
|
#[clippy::author]
|
||
|
let _ = if true {
|
||
|
1 == 1;
|
||
|
} else {
|
||
|
2 == 2;
|
||
|
};
|
||
|
}
|