154 lines
3.5 KiB
Plaintext
154 lines
3.5 KiB
Plaintext
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:8:9
|
|
|
|
|
LL | (1,) => {}
|
|
| ^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:2:9
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:13:9
|
|
|
|
|
LL | (2,) => {}
|
|
| ^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:19:9
|
|
|
|
|
LL | (1 | 2,) => {}
|
|
| ^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:24:9
|
|
|
|
|
LL | (1, 3) => {}
|
|
| ^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:25:9
|
|
|
|
|
LL | (1, 4) => {}
|
|
| ^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:26:9
|
|
|
|
|
LL | (2, 4) => {}
|
|
| ^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:27:9
|
|
|
|
|
LL | (2 | 1, 4) => {}
|
|
| ^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:29:9
|
|
|
|
|
LL | (1, 4 | 5) => {}
|
|
| ^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:37:9
|
|
|
|
|
LL | (Some(1),) => {}
|
|
| ^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:38:9
|
|
|
|
|
LL | (None,) => {}
|
|
| ^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:43:9
|
|
|
|
|
LL | ((1..=4,),) => {}
|
|
| ^^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:48:14
|
|
|
|
|
LL | (1 | 1,) => {}
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:52:19
|
|
|
|
|
LL | (0 | 1) | 1 => {}
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:56:14
|
|
|
|
|
LL | 0 | (0 | 0) => {}
|
|
| ^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:63:13
|
|
|
|
|
LL | / Some(
|
|
LL | | 0 | 0) => {}
|
|
| |______________________^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:69:15
|
|
|
|
|
LL | | 0
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:71:15
|
|
|
|
|
LL | | 0] => {}
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:79:10
|
|
|
|
|
LL | [1
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:91:10
|
|
|
|
|
LL | [true
|
|
| ^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:98:36
|
|
|
|
|
LL | (true | false, None | Some(true
|
|
| ^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:114:14
|
|
|
|
|
LL | Some(0
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:133:19
|
|
|
|
|
LL | | false) => {}
|
|
| ^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:141:15
|
|
|
|
|
LL | | true) => {}
|
|
| ^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:147:15
|
|
|
|
|
LL | | true,
|
|
| ^^^^
|
|
|
|
error: aborting due to 24 previous errors
|
|
|