2015-05-01 22:35:49 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
#[deny(needless_bool)]
|
|
|
|
fn main() {
|
2015-08-11 18:22:20 +00:00
|
|
|
let x = true;
|
2015-08-13 07:44:03 +00:00
|
|
|
if x { true } else { true }; //~ERROR this if-then-else expression will always return true
|
|
|
|
if x { false } else { false }; //~ERROR this if-then-else expression will always return false
|
|
|
|
if x { true } else { false }; //~ERROR you can reduce this if-then-else expression to just `x`
|
|
|
|
if x { false } else { true }; //~ERROR you can reduce this if-then-else expression to just `!x`
|
2015-08-11 18:22:20 +00:00
|
|
|
if x { x } else { false }; // would also be questionable, but we don't catch this yet
|
2015-05-01 22:35:49 +00:00
|
|
|
}
|