mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
75 lines
1,001 B
Rust
75 lines
1,001 B
Rust
#[warn(clippy::bool_comparison)]
|
|
fn main() {
|
|
let x = true;
|
|
if x == true {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if x == false {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if true == x {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if false == x {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if x != true {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if x != false {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if true != x {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if false != x {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if x < true {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if false < x {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if x > false {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if true > x {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
let y = true;
|
|
if x < y {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
if x > y {
|
|
"yes"
|
|
} else {
|
|
"no"
|
|
};
|
|
}
|