2015-05-01 22:35:49 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
2016-01-30 18:16:49 +00:00
|
|
|
#[allow(if_same_then_else)]
|
2015-05-01 22:35:49 +00:00
|
|
|
#[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
|
2016-03-14 16:13:10 +00:00
|
|
|
if x { true } else { false };
|
|
|
|
//~^ ERROR this if-then-else expression returns a bool literal
|
|
|
|
//~| HELP you can reduce it to
|
|
|
|
//~| SUGGESTION `x`
|
|
|
|
if x { false } else { true };
|
|
|
|
//~^ ERROR this if-then-else expression returns a bool literal
|
|
|
|
//~| HELP you can reduce it to
|
|
|
|
//~| SUGGESTION `!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
|
2016-03-14 15:41:41 +00:00
|
|
|
bool_ret(x);
|
|
|
|
bool_ret2(x);
|
|
|
|
bool_ret3(x);
|
|
|
|
bool_ret4(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deny(needless_bool)]
|
|
|
|
#[allow(if_same_then_else)]
|
|
|
|
fn bool_ret(x: bool) -> bool {
|
|
|
|
if x { return true } else { return true }; //~ERROR this if-then-else expression will always return true
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deny(needless_bool)]
|
|
|
|
#[allow(if_same_then_else)]
|
|
|
|
fn bool_ret2(x: bool) -> bool {
|
|
|
|
if x { return false } else { return false }; //~ERROR this if-then-else expression will always return false
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deny(needless_bool)]
|
|
|
|
fn bool_ret3(x: bool) -> bool {
|
2016-03-14 16:13:10 +00:00
|
|
|
if x { return true } else { return false };
|
|
|
|
//~^ ERROR this if-then-else expression returns a bool literal
|
|
|
|
//~| HELP you can reduce it to
|
|
|
|
//~| SUGGESTION `return x`
|
2016-03-14 15:41:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[deny(needless_bool)]
|
|
|
|
fn bool_ret4(x: bool) -> bool {
|
2016-03-14 16:13:10 +00:00
|
|
|
if x { return false } else { return true };
|
|
|
|
//~^ ERROR this if-then-else expression returns a bool literal
|
|
|
|
//~| HELP you can reduce it to
|
|
|
|
//~| SUGGESTION `return !x`
|
2015-05-01 22:35:49 +00:00
|
|
|
}
|