-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
128 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// run-rustfix | ||
|
||
#![feature(or_patterns)] | ||
#![feature(box_patterns)] | ||
#![warn(clippy::unnested_or_patterns)] | ||
#![allow(clippy::cognitive_complexity, clippy::match_ref_pats)] | ||
#![allow(unreachable_patterns, irrefutable_let_patterns, unused_variables)] | ||
|
||
fn main() { | ||
if let Some(Some(0 | 1)) = None {} | ||
if let Some(Some(0 | 1 | 2)) = None {} | ||
if let Some(Some(0 | 1 | 2 | 3 | 4)) = None {} | ||
if let Some(Some(0 | 1 | 2)) = None {} | ||
if let ((0 | 1 | 2,),) = ((0,),) {} | ||
if let 0 | 1 | 2 = 0 {} | ||
if let box (0 | 1 | 2 | 3 | 4) = Box::new(0) {} | ||
if let box box (0 | 2 | 4) = Box::new(Box::new(0)) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// run-rustfix | ||
|
||
#![feature(or_patterns)] | ||
#![feature(box_patterns)] | ||
#![warn(clippy::unnested_or_patterns)] | ||
#![allow(clippy::cognitive_complexity, clippy::match_ref_pats)] | ||
#![allow(unreachable_patterns, irrefutable_let_patterns, unused_variables)] | ||
|
||
fn main() { | ||
if let Some(Some(0)) | Some(Some(1)) = None {} | ||
if let Some(Some(0)) | Some(Some(1) | Some(2)) = None {} | ||
if let Some(Some(0 | 1) | Some(2)) | Some(Some(3) | Some(4)) = None {} | ||
if let Some(Some(0) | Some(1 | 2)) = None {} | ||
if let ((0,),) | ((1,) | (2,),) = ((0,),) {} | ||
if let 0 | (1 | 2) = 0 {} | ||
if let box (0 | 1) | (box 2 | box (3 | 4)) = Box::new(0) {} | ||
if let box box 0 | box (box 2 | box 4) = Box::new(Box::new(0)) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
error: unnested or-patterns | ||
--> $DIR/unnested_or_patterns2.rs:10:12 | ||
| | ||
LL | if let Some(Some(0)) | Some(Some(1)) = None {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::unnested-or-patterns` implied by `-D warnings` | ||
help: nest the patterns | ||
| | ||
LL | if let Some(Some(0 | 1)) = None {} | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
error: unnested or-patterns | ||
--> $DIR/unnested_or_patterns2.rs:11:12 | ||
| | ||
LL | if let Some(Some(0)) | Some(Some(1) | Some(2)) = None {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: nest the patterns | ||
| | ||
LL | if let Some(Some(0 | 1 | 2)) = None {} | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: unnested or-patterns | ||
--> $DIR/unnested_or_patterns2.rs:12:12 | ||
| | ||
LL | if let Some(Some(0 | 1) | Some(2)) | Some(Some(3) | Some(4)) = None {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: nest the patterns | ||
| | ||
LL | if let Some(Some(0 | 1 | 2 | 3 | 4)) = None {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: unnested or-patterns | ||
--> $DIR/unnested_or_patterns2.rs:13:12 | ||
| | ||
LL | if let Some(Some(0) | Some(1 | 2)) = None {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: nest the patterns | ||
| | ||
LL | if let Some(Some(0 | 1 | 2)) = None {} | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: unnested or-patterns | ||
--> $DIR/unnested_or_patterns2.rs:14:12 | ||
| | ||
LL | if let ((0,),) | ((1,) | (2,),) = ((0,),) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: nest the patterns | ||
| | ||
LL | if let ((0 | 1 | 2,),) = ((0,),) {} | ||
| ^^^^^^^^^^^^^^^ | ||
|
||
error: unnested or-patterns | ||
--> $DIR/unnested_or_patterns2.rs:15:12 | ||
| | ||
LL | if let 0 | (1 | 2) = 0 {} | ||
| ^^^^^^^^^^^ | ||
| | ||
help: nest the patterns | ||
| | ||
LL | if let 0 | 1 | 2 = 0 {} | ||
| ^^^^^^^^^ | ||
|
||
error: unnested or-patterns | ||
--> $DIR/unnested_or_patterns2.rs:16:12 | ||
| | ||
LL | if let box (0 | 1) | (box 2 | box (3 | 4)) = Box::new(0) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: nest the patterns | ||
| | ||
LL | if let box (0 | 1 | 2 | 3 | 4) = Box::new(0) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: unnested or-patterns | ||
--> $DIR/unnested_or_patterns2.rs:17:12 | ||
| | ||
LL | if let box box 0 | box (box 2 | box 4) = Box::new(Box::new(0)) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: nest the patterns | ||
| | ||
LL | if let box box (0 | 2 | 4) = Box::new(Box::new(0)) {} | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 8 previous errors | ||
|