blob: 941f01efd2c9c4b32027e9b3b3254027c6216384 [file]
error: this `if` has identical blocks
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:104:14
|
LL | if false {
| ______________^
LL | | } else {
| |_____^
|
note: same as this
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:105:12
|
LL | } else {
| ____________^
LL | | }
| |_____^
note: the lint level is defined here
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:1:40
|
LL | #![deny(clippy::branches_sharing_code, clippy::if_same_then_else)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: this `if` has identical blocks
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:116:15
|
LL | if x == 0 {
| _______________^
LL | | let u = 19;
LL | | println!("How are u today?");
LL | | let _ = "This is a string";
LL | | } else {
| |_____^
|
note: same as this
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:120:12
|
LL | } else {
| ____________^
LL | | let u = 19;
LL | | println!("How are u today?");
LL | | let _ = "This is a string";
LL | | }
| |_____^
error: this `if` has identical blocks
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:128:23
|
LL | let _ = if x == 6 { 7 } else { 7 };
| ^^^^^
|
note: same as this
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:128:34
|
LL | let _ = if x == 6 { 7 } else { 7 };
| ^^^^^
error: this `if` has identical blocks
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:135:23
|
LL | } else if x == 68 {
| _______________________^
LL | | println!("I'm a doppelgänger");
LL | |
LL | | if y == 90 { "=^.^=" } else { ":D" }
LL | | } else {
| |_____^
|
note: same as this
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:139:12
|
LL | } else {
| ____________^
LL | | println!("I'm a doppelgänger");
LL | |
LL | | if y == 90 { "=^.^=" } else { ":D" }
LL | | };
| |_____^
error: this `if` has identical blocks
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:148:23
|
LL | } else if x == 68 {
| _______________________^
LL | | println!("I'm a doppelgänger");
LL | | } else {
| |_____^
|
note: same as this
--> tests/ui/branches_sharing_code/valid_if_blocks.rs:150:12
|
LL | } else {
| ____________^
LL | | println!("I'm a doppelgänger");
LL | | }
| |_____^
error: aborting due to 5 previous errors