mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 20:54:13 +00:00
18 lines
217 B
Rust
18 lines
217 B
Rust
#[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 {
|
|
};
|
|
}
|