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