2020-01-06 15:36:33 +09:00
|
|
|
error: this `if` statement can be collapsed
|
2019-01-13 11:44:45 +01:00
|
|
|
--> $DIR/collapsible_if.rs:9:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if x == "hello" {
|
|
|
|
LL | | if y == "world" {
|
|
|
|
LL | | println!("Hello world!");
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-04-23 15:25:22 +02:00
|
|
|
| |_____^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::collapsible-if` implied by `-D warnings`
|
2020-07-14 14:59:59 +02:00
|
|
|
help: collapse nested if block
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ if x == "hello" && y == "world" {
|
|
|
|
LL + println!("Hello world!");
|
|
|
|
LL + }
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: this `if` statement can be collapsed
|
2019-01-13 11:44:45 +01:00
|
|
|
--> $DIR/collapsible_if.rs:15:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if x == "hello" || x == "world" {
|
|
|
|
LL | | if y == "world" || y == "hello" {
|
|
|
|
LL | | println!("Hello world!");
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-04-23 15:25:22 +02:00
|
|
|
| |_____^
|
2019-10-26 21:53:42 +02:00
|
|
|
|
|
2020-07-14 14:59:59 +02:00
|
|
|
help: collapse nested if block
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ if (x == "hello" || x == "world") && (y == "world" || y == "hello") {
|
|
|
|
LL + println!("Hello world!");
|
|
|
|
LL + }
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: this `if` statement can be collapsed
|
2019-01-13 11:44:45 +01:00
|
|
|
--> $DIR/collapsible_if.rs:21:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if x == "hello" && x == "world" {
|
|
|
|
LL | | if y == "world" || y == "hello" {
|
|
|
|
LL | | println!("Hello world!");
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-04-23 15:25:22 +02:00
|
|
|
| |_____^
|
2019-10-26 21:53:42 +02:00
|
|
|
|
|
2020-07-14 14:59:59 +02:00
|
|
|
help: collapse nested if block
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ if x == "hello" && x == "world" && (y == "world" || y == "hello") {
|
|
|
|
LL + println!("Hello world!");
|
|
|
|
LL + }
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: this `if` statement can be collapsed
|
2019-01-13 11:44:45 +01:00
|
|
|
--> $DIR/collapsible_if.rs:27:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if x == "hello" || x == "world" {
|
|
|
|
LL | | if y == "world" && y == "hello" {
|
|
|
|
LL | | println!("Hello world!");
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-04-23 15:25:22 +02:00
|
|
|
| |_____^
|
2019-10-26 21:53:42 +02:00
|
|
|
|
|
2020-07-14 14:59:59 +02:00
|
|
|
help: collapse nested if block
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ if (x == "hello" || x == "world") && y == "world" && y == "hello" {
|
|
|
|
LL + println!("Hello world!");
|
|
|
|
LL + }
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: this `if` statement can be collapsed
|
2019-01-13 11:44:45 +01:00
|
|
|
--> $DIR/collapsible_if.rs:33:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if x == "hello" && x == "world" {
|
|
|
|
LL | | if y == "world" && y == "hello" {
|
|
|
|
LL | | println!("Hello world!");
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-04-23 15:25:22 +02:00
|
|
|
| |_____^
|
2019-10-26 21:53:42 +02:00
|
|
|
|
|
2020-07-14 14:59:59 +02:00
|
|
|
help: collapse nested if block
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ if x == "hello" && x == "world" && y == "world" && y == "hello" {
|
|
|
|
LL + println!("Hello world!");
|
|
|
|
LL + }
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: this `if` statement can be collapsed
|
2019-01-13 11:44:45 +01:00
|
|
|
--> $DIR/collapsible_if.rs:39:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if 42 == 1337 {
|
|
|
|
LL | | if 'a' != 'A' {
|
|
|
|
LL | | println!("world!")
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-04-23 15:25:22 +02:00
|
|
|
| |_____^
|
2019-10-26 21:53:42 +02:00
|
|
|
|
|
2020-07-14 14:59:59 +02:00
|
|
|
help: collapse nested if block
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ if 42 == 1337 && 'a' != 'A' {
|
|
|
|
LL + println!("world!")
|
|
|
|
LL + }
|
2017-07-10 15:29:29 +02:00
|
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: this `if` statement can be collapsed
|
2020-01-07 15:06:23 +09:00
|
|
|
--> $DIR/collapsible_if.rs:95:5
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | / if x == "hello" {
|
|
|
|
LL | | if y == "world" { // Collapsible
|
|
|
|
LL | | println!("Hello world!");
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
2019-10-26 21:53:42 +02:00
|
|
|
|
|
2020-07-14 14:59:59 +02:00
|
|
|
help: collapse nested if block
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ if x == "hello" && y == "world" { // Collapsible
|
|
|
|
LL + println!("Hello world!");
|
|
|
|
LL + }
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
2018-10-16 22:20:27 +02:00
|
|
|
|
2020-09-10 17:47:07 +02:00
|
|
|
error: this `if` statement can be collapsed
|
|
|
|
--> $DIR/collapsible_if.rs:154:5
|
|
|
|
|
|
|
|
|
LL | / if matches!(true, true) {
|
|
|
|
LL | | if matches!(true, true) {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: collapse nested if block: `if matches!(true, true) && matches!(true, true) {}`
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|