2023-03-10 15:43:04 +00:00
|
|
|
#![allow(
|
|
|
|
clippy::assertions_on_constants,
|
|
|
|
clippy::equatable_if_let,
|
2023-06-10 11:43:30 +00:00
|
|
|
clippy::needless_if,
|
2023-03-10 15:43:04 +00:00
|
|
|
clippy::nonminimal_bool,
|
2023-12-16 16:40:32 +00:00
|
|
|
clippy::eq_op,
|
|
|
|
clippy::redundant_pattern_matching
|
2023-03-10 15:43:04 +00:00
|
|
|
)]
|
2019-01-13 10:44:45 +00:00
|
|
|
|
2018-12-08 17:56:59 +00:00
|
|
|
#[rustfmt::skip]
|
2018-07-28 15:34:52 +00:00
|
|
|
#[warn(clippy::collapsible_if)]
|
2015-05-29 14:07:34 +00:00
|
|
|
fn main() {
|
|
|
|
let x = "hello";
|
|
|
|
let y = "world";
|
2016-06-07 16:32:26 +00:00
|
|
|
if x == "hello" {
|
2015-05-29 14:07:34 +00:00
|
|
|
if y == "world" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 16:32:26 +00:00
|
|
|
if x == "hello" || x == "world" {
|
2015-05-29 14:07:34 +00:00
|
|
|
if y == "world" || y == "hello" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-29 19:26:26 +00:00
|
|
|
if x == "hello" && x == "world" {
|
|
|
|
if y == "world" || y == "hello" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" || x == "world" {
|
|
|
|
if y == "world" && y == "hello" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" && x == "world" {
|
|
|
|
if y == "world" && y == "hello" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if 42 == 1337 {
|
|
|
|
if 'a' != 'A' {
|
|
|
|
println!("world!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-29 14:07:34 +00:00
|
|
|
// Works because any if with an else statement cannot be collapsed.
|
|
|
|
if x == "hello" {
|
|
|
|
if y == "world" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
println!("Not Hello world");
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" {
|
|
|
|
if y == "world" {
|
|
|
|
println!("Hello world!");
|
|
|
|
} else {
|
|
|
|
println!("Hello something else");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-11 18:22:20 +00:00
|
|
|
if x == "hello" {
|
|
|
|
print!("Hello ");
|
|
|
|
if y == "world" {
|
|
|
|
println!("world!")
|
|
|
|
}
|
|
|
|
}
|
2016-07-01 15:41:57 +00:00
|
|
|
|
|
|
|
if true {
|
|
|
|
} else {
|
|
|
|
assert!(true); // assert! is just an `if`
|
|
|
|
}
|
2018-10-16 20:20:27 +00:00
|
|
|
|
|
|
|
|
2018-11-22 03:40:09 +00:00
|
|
|
// The following tests check for the fix of https://github.com/rust-lang/rust-clippy/issues/798
|
2018-10-16 20:20:27 +00:00
|
|
|
if x == "hello" {// Not collapsible
|
|
|
|
if y == "world" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" { // Not collapsible
|
|
|
|
if y == "world" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" {
|
|
|
|
// Not collapsible
|
|
|
|
if y == "world" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" {
|
|
|
|
if y == "world" { // Collapsible
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" {
|
|
|
|
print!("Hello ");
|
|
|
|
} else {
|
|
|
|
// Not collapsible
|
|
|
|
if y == "world" {
|
|
|
|
println!("world!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" {
|
|
|
|
print!("Hello ");
|
|
|
|
} else {
|
|
|
|
// Not collapsible
|
|
|
|
if let Some(42) = Some(42) {
|
|
|
|
println!("world!")
|
|
|
|
}
|
|
|
|
}
|
2018-10-18 16:57:16 +00:00
|
|
|
|
|
|
|
if x == "hello" {
|
|
|
|
/* Not collapsible */
|
|
|
|
if y == "world" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if x == "hello" { /* Not collapsible */
|
|
|
|
if y == "world" {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
2019-05-21 06:17:47 +00:00
|
|
|
|
|
|
|
// Test behavior wrt. `let_chains`.
|
|
|
|
// None of the cases below should be collapsed.
|
|
|
|
fn truth() -> bool { true }
|
|
|
|
|
|
|
|
// Prefix:
|
|
|
|
if let 0 = 1 {
|
|
|
|
if truth() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Suffix:
|
|
|
|
if truth() {
|
|
|
|
if let 0 = 1 {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Midfix:
|
|
|
|
if truth() {
|
|
|
|
if let 0 = 1 {
|
|
|
|
if truth() {}
|
|
|
|
}
|
|
|
|
}
|
2020-08-31 15:05:53 +00:00
|
|
|
|
|
|
|
// Fix #5962
|
|
|
|
if matches!(true, true) {
|
|
|
|
if matches!(true, true) {}
|
|
|
|
}
|
2021-02-08 17:00:30 +00:00
|
|
|
|
2022-08-31 16:47:56 +00:00
|
|
|
// Issue #9375
|
|
|
|
if matches!(true, true) && truth() {
|
|
|
|
if matches!(true, true) {}
|
|
|
|
}
|
|
|
|
|
2021-02-08 17:00:30 +00:00
|
|
|
if true {
|
|
|
|
#[cfg(not(teehee))]
|
|
|
|
if true {
|
|
|
|
println!("Hello world!");
|
|
|
|
}
|
|
|
|
}
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|