mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
261 B
Rust
11 lines
261 B
Rust
#![feature(tool_lints)]
|
|
|
|
|
|
#[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" };
|
|
}
|