mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-19 12:05:08 +00:00
13 lines
340 B
Rust
13 lines
340 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#[deny(needless_bool)]
|
|
fn main() {
|
|
let x = true;
|
|
if x { true } else { true }; //~ERROR
|
|
if x { false } else { false }; //~ERROR
|
|
if x { true } else { false }; //~ERROR
|
|
if x { false } else { true }; //~ERROR
|
|
if x { x } else { false }; // would also be questionable, but we don't catch this yet
|
|
}
|