2019-08-05 20:05:05 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
2018-10-28 14:37:39 +00:00
|
|
|
#![warn(clippy::needless_bool)]
|
2019-08-05 20:05:05 +00:00
|
|
|
#![allow(
|
|
|
|
unused,
|
|
|
|
dead_code,
|
|
|
|
clippy::no_effect,
|
|
|
|
clippy::if_same_then_else,
|
|
|
|
clippy::needless_return
|
|
|
|
)]
|
2018-10-11 10:16:22 +00:00
|
|
|
|
2018-10-28 14:37:39 +00:00
|
|
|
use std::cell::Cell;
|
2017-09-18 10:47:33 +00:00
|
|
|
|
2018-10-28 14:37:39 +00:00
|
|
|
macro_rules! bool_comparison_trigger {
|
|
|
|
($($i:ident: $def:expr, $stb:expr );+ $(;)*) => (
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Trigger {
|
|
|
|
$($i: (Cell<bool>, bool, bool)),+
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
impl Trigger {
|
|
|
|
pub fn trigger(&self, key: &str) -> bool {
|
|
|
|
$(
|
|
|
|
if let stringify!($i) = key {
|
|
|
|
return self.$i.1 && self.$i.2 == $def;
|
|
|
|
}
|
|
|
|
)+
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2017-09-18 10:47:33 +00:00
|
|
|
|
2015-05-01 22:35:49 +00:00
|
|
|
fn main() {
|
2015-08-11 18:22:20 +00:00
|
|
|
let x = true;
|
2016-07-03 23:17:31 +00:00
|
|
|
let y = false;
|
2019-08-05 20:05:05 +00:00
|
|
|
x;
|
|
|
|
!x;
|
|
|
|
!(x && y);
|
2018-12-09 22:26:16 +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_ret3(x);
|
|
|
|
bool_ret4(x);
|
2019-08-05 20:05:05 +00:00
|
|
|
bool_ret5(x, x);
|
2016-07-03 23:17:31 +00:00
|
|
|
bool_ret6(x, x);
|
2018-10-28 14:37:39 +00:00
|
|
|
needless_bool(x);
|
|
|
|
needless_bool2(x);
|
|
|
|
needless_bool3(x);
|
2016-03-14 15:41:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bool_ret3(x: bool) -> bool {
|
2019-08-05 20:05:05 +00:00
|
|
|
return x;
|
2016-07-03 23:17:31 +00:00
|
|
|
}
|
|
|
|
|
2019-08-05 20:05:05 +00:00
|
|
|
fn bool_ret4(x: bool) -> bool {
|
|
|
|
return !x;
|
2016-03-14 15:41:41 +00:00
|
|
|
}
|
|
|
|
|
2019-08-05 20:05:05 +00:00
|
|
|
fn bool_ret5(x: bool, y: bool) -> bool {
|
|
|
|
return x && y;
|
2016-07-03 23:17:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bool_ret6(x: bool, y: bool) -> bool {
|
2019-08-05 20:05:05 +00:00
|
|
|
return !(x && y);
|
2015-05-01 22:35:49 +00:00
|
|
|
}
|
2018-10-28 14:37:39 +00:00
|
|
|
|
|
|
|
fn needless_bool(x: bool) {
|
2019-08-05 20:05:05 +00:00
|
|
|
if x {};
|
2018-10-28 14:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn needless_bool2(x: bool) {
|
2019-08-05 20:05:05 +00:00
|
|
|
if !x {};
|
2018-10-28 14:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn needless_bool3(x: bool) {
|
|
|
|
bool_comparison_trigger! {
|
|
|
|
test_one: false, false;
|
|
|
|
test_three: false, false;
|
|
|
|
test_two: true, true;
|
|
|
|
}
|
2018-12-09 22:26:16 +00:00
|
|
|
|
2019-08-05 20:05:05 +00:00
|
|
|
if x {};
|
|
|
|
if !x {};
|
2018-10-28 15:28:17 +00:00
|
|
|
}
|
2019-01-20 15:15:00 +00:00
|
|
|
|
|
|
|
fn needless_bool_in_the_suggestion_wraps_the_predicate_of_if_else_statement_in_brackets() {
|
|
|
|
let b = false;
|
|
|
|
let returns_bool = || false;
|
|
|
|
|
|
|
|
let x = if b {
|
|
|
|
true
|
2019-08-05 20:05:05 +00:00
|
|
|
} else { !returns_bool() };
|
2019-01-20 15:15:00 +00:00
|
|
|
}
|