2023-08-24 19:32:12 +00:00
|
|
|
//@no-rustfix: overlapping suggestions
|
2023-12-28 18:33:07 +00:00
|
|
|
#![allow(
|
|
|
|
unused,
|
|
|
|
clippy::diverging_sub_expression,
|
|
|
|
clippy::needless_if,
|
|
|
|
clippy::redundant_pattern_matching
|
|
|
|
)]
|
2020-01-13 22:41:11 +00:00
|
|
|
#![warn(clippy::nonminimal_bool)]
|
2023-07-02 12:35:19 +00:00
|
|
|
#![allow(clippy::useless_vec)]
|
2020-01-13 22:41:11 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let a: bool = unimplemented!();
|
|
|
|
let b: bool = unimplemented!();
|
|
|
|
let c: bool = unimplemented!();
|
|
|
|
let d: bool = unimplemented!();
|
|
|
|
let e: bool = unimplemented!();
|
|
|
|
let _ = !true;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
|
|
|
//~| NOTE: `-D clippy::nonminimal-bool` implied by `-D warnings`
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = !false;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = !!a;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = false || a;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
// don't lint on cfgs
|
|
|
|
let _ = cfg!(you_shall_not_not_pass) && a;
|
|
|
|
let _ = a || !b || !c || !d || !e;
|
|
|
|
let _ = !(!a && b);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = !(!a || b);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = !a && !(b && c);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn equality_stuff() {
|
|
|
|
let a: i32 = unimplemented!();
|
|
|
|
let b: i32 = unimplemented!();
|
|
|
|
let c: i32 = unimplemented!();
|
|
|
|
let d: i32 = unimplemented!();
|
|
|
|
let _ = a == b && c == 5 && a == b;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = a == b || c == 5 || a == b;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = a == b && c == 5 && b == a;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = a != b || !(a != b || c == d);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
let _ = a != b && !(a != b && c == d);
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2020-01-13 22:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn issue3847(a: u32, b: u32) -> bool {
|
|
|
|
const THRESHOLD: u32 = 1_000;
|
|
|
|
|
|
|
|
if a < THRESHOLD && b >= THRESHOLD || a >= THRESHOLD && b < THRESHOLD {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn issue4548() {
|
|
|
|
fn f(_i: u32, _j: u32) -> u32 {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
|
|
|
let i = 0;
|
|
|
|
let j = 0;
|
|
|
|
|
|
|
|
if i != j && f(i, j) != 0 || i == j && f(i, j) != 1 {}
|
|
|
|
}
|
2022-06-30 08:50:09 +00:00
|
|
|
|
|
|
|
fn check_expect() {
|
|
|
|
let a: bool = unimplemented!();
|
|
|
|
#[expect(clippy::nonminimal_bool)]
|
|
|
|
let _ = !!a;
|
|
|
|
}
|
2022-09-21 17:02:37 +00:00
|
|
|
|
|
|
|
fn issue9428() {
|
|
|
|
if matches!(true, true) && true {
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this boolean expression can be simplified
|
2022-09-21 17:02:37 +00:00
|
|
|
println!("foo");
|
|
|
|
}
|
|
|
|
}
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
fn issue_10523() {
|
|
|
|
macro_rules! a {
|
|
|
|
($v:expr) => {
|
|
|
|
$v.is_some()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
let x: Option<u32> = None;
|
|
|
|
if !a!(x) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn issue_10523_1() {
|
|
|
|
macro_rules! a {
|
|
|
|
($v:expr) => {
|
|
|
|
!$v.is_some()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
let x: Option<u32> = None;
|
|
|
|
if a!(x) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn issue_10523_2() {
|
|
|
|
macro_rules! a {
|
|
|
|
() => {
|
|
|
|
!None::<u32>.is_some()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if a!() {}
|
|
|
|
}
|
2023-04-11 13:31:08 +00:00
|
|
|
|
|
|
|
fn issue_10435() {
|
|
|
|
let x = vec![0];
|
|
|
|
let y = vec![1];
|
|
|
|
let z = vec![2];
|
|
|
|
|
|
|
|
// vvv Should not lint
|
|
|
|
#[allow(clippy::nonminimal_bool)]
|
|
|
|
if !x.is_empty() && !(y.is_empty() || z.is_empty()) {
|
|
|
|
println!("{}", line!());
|
|
|
|
}
|
|
|
|
|
|
|
|
// vvv Should not lint (#10435 talks about a bug where it lints)
|
|
|
|
#[allow(clippy::nonminimal_bool)]
|
|
|
|
if !(x == [0]) {
|
|
|
|
println!("{}", line!());
|
|
|
|
}
|
|
|
|
}
|
2023-06-02 09:41:57 +00:00
|
|
|
|
|
|
|
fn issue10836() {
|
|
|
|
struct Foo(bool);
|
|
|
|
impl std::ops::Not for Foo {
|
|
|
|
type Output = bool;
|
|
|
|
|
|
|
|
fn not(self) -> Self::Output {
|
|
|
|
!self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not lint
|
|
|
|
let _: bool = !!Foo(true);
|
|
|
|
}
|
2024-02-08 19:24:42 +00:00
|
|
|
|
|
|
|
fn issue11932() {
|
|
|
|
let x: i32 = unimplemented!();
|
|
|
|
|
|
|
|
#[allow(clippy::nonminimal_bool)]
|
|
|
|
let _ = x % 2 == 0 || {
|
|
|
|
// Should not lint
|
|
|
|
assert!(x > 0);
|
|
|
|
x % 3 == 0
|
|
|
|
};
|
|
|
|
}
|
2024-02-27 14:25:18 +00:00
|
|
|
|
|
|
|
fn issue_5794() {
|
|
|
|
let a = 0;
|
|
|
|
if !(12 == a) {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
if !(a == 12) {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
if !(12 != a) {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
if !(a != 12) {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
|
|
|
|
let b = true;
|
|
|
|
let c = false;
|
|
|
|
if !b == true {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
if !b != true {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
if true == !b {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
if true != !b {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
if !b == !c {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
if !b != !c {} //~ ERROR: this boolean expression can be simplified
|
|
|
|
}
|
2024-03-07 16:19:29 +00:00
|
|
|
|
|
|
|
fn issue_12371(x: usize) -> bool {
|
|
|
|
// Should not warn!
|
|
|
|
!x != 0
|
|
|
|
}
|