mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
179 lines
4.4 KiB
Text
179 lines
4.4 KiB
Text
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:9:12
|
|
|
|
|
LL | if let box 0 | box 2 = Box::new(0) {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unnested-or-patterns` implied by `-D warnings`
|
|
help: nest the patterns
|
|
|
|
|
LL | if let box (0 | 2) = Box::new(0) {}
|
|
| ~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:10:12
|
|
|
|
|
LL | if let box ((0 | 1)) | box (2 | 3) | box 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_patterns.rs:12:12
|
|
|
|
|
LL | if let &0 | C0 | &2 = &0 {}
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let &(0 | 2) | C0 = &0 {}
|
|
| ~~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:13:12
|
|
|
|
|
LL | if let &mut 0 | &mut 2 = &mut 0 {}
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let &mut (0 | 2) = &mut 0 {}
|
|
| ~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:14:12
|
|
|
|
|
LL | if let x @ 0 | x @ 2 = 0 {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let x @ (0 | 2) = 0 {}
|
|
| ~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:15:12
|
|
|
|
|
LL | if let (0, 1) | (0, 2) | (0, 3) = (0, 0) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let (0, 1 | 2 | 3) = (0, 0) {}
|
|
| ~~~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:16:12
|
|
|
|
|
LL | if let (1, 0) | (2, 0) | (3, 0) = (0, 0) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let (1 | 2 | 3, 0) = (0, 0) {}
|
|
| ~~~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:17:12
|
|
|
|
|
LL | if let (x, ..) | (x, 1) | (x, 2) = (0, 1) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let (x, ..) | (x, 1 | 2) = (0, 1) {}
|
|
| ~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:18:12
|
|
|
|
|
LL | if let [0] | [1] = [0] {}
|
|
| ^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let [0 | 1] = [0] {}
|
|
| ~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:19:12
|
|
|
|
|
LL | if let [x, 0] | [x, 1] = [0, 1] {}
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let [x, 0 | 1] = [0, 1] {}
|
|
| ~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:20:12
|
|
|
|
|
LL | if let [x, 0] | [x, 1] | [x, 2] = [0, 1] {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let [x, 0 | 1 | 2] = [0, 1] {}
|
|
| ~~~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:21:12
|
|
|
|
|
LL | if let [x, ..] | [x, 1] | [x, 2] = [0, 1] {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let [x, ..] | [x, 1 | 2] = [0, 1] {}
|
|
| ~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:23:12
|
|
|
|
|
LL | if let TS(0, x) | TS(1, x) = TS(0, 0) {}
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let TS(0 | 1, x) = TS(0, 0) {}
|
|
| ~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:24:12
|
|
|
|
|
LL | if let TS(1, 0) | TS(2, 0) | TS(3, 0) = TS(0, 0) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let TS(1 | 2 | 3, 0) = TS(0, 0) {}
|
|
| ~~~~~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:25:12
|
|
|
|
|
LL | if let TS(x, ..) | TS(x, 1) | TS(x, 2) = TS(0, 0) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let TS(x, ..) | TS(x, 1 | 2) = TS(0, 0) {}
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: unnested or-patterns
|
|
--> $DIR/unnested_or_patterns.rs:30:12
|
|
|
|
|
LL | if let S { x: 0, y } | S { y, x: 1 } = (S { x: 0, y: 1 }) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: nest the patterns
|
|
|
|
|
LL | if let S { x: 0 | 1, y } = (S { x: 0, y: 1 }) {}
|
|
| ~~~~~~~~~~~~~~~~~
|
|
|
|
error: aborting due to 16 previous errors
|
|
|