mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
23 lines
279 B
Rust
23 lines
279 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#[deny(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" };
|
|
|
|
|
|
|
|
}
|