mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
225 lines
5.5 KiB
Plaintext
225 lines
5.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:1: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:58:14
|
|
|
|
|
LL | 0 | (0 | 0) => {}
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:58:18
|
|
|
|
|
LL | 0 | (0 | 0) => {}
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:66:13
|
|
|
|
|
LL | / Some(
|
|
LL | | 0 | 0) => {}
|
|
| |______________________^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:72:15
|
|
|
|
|
LL | | 0
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:74:15
|
|
|
|
|
LL | | 0] => {}
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:78:20
|
|
|
|
|
LL | (true, 0 | 0) => {}
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:79:17
|
|
|
|
|
LL | (_, 0 | 0) => {}
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:87:10
|
|
|
|
|
LL | [1
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:99:10
|
|
|
|
|
LL | [true
|
|
| ^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:106:36
|
|
|
|
|
LL | (true | false, None | Some(true
|
|
| ^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:111:14
|
|
|
|
|
LL | (true
|
|
| ^^^^
|
|
...
|
|
LL | (true | false, None | Some(t_or_f!())) => {}
|
|
| --------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `t_or_f` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:122:14
|
|
|
|
|
LL | Some(0
|
|
| ^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:141:19
|
|
|
|
|
LL | | false) => {}
|
|
| ^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:149:15
|
|
|
|
|
LL | | true) => {}
|
|
| ^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:155:15
|
|
|
|
|
LL | | true,
|
|
| ^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:160:15
|
|
|
|
|
LL | | (y, x) => {}
|
|
| ^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:164:30
|
|
|
|
|
LL | fn unreachable_in_param((_ | (_, _)): (bool, bool)) {}
|
|
| ^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:171:14
|
|
|
|
|
LL | let (_ | (_, _)) = bool_pair;
|
|
| ^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:173:14
|
|
|
|
|
LL | for (_ | (_, _)) in [bool_pair] {}
|
|
| ^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:176:20
|
|
|
|
|
LL | let (Some(_) | Some(true)) = bool_option else { return };
|
|
| ^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:178:22
|
|
|
|
|
LL | if let Some(_) | Some(true) = bool_option {}
|
|
| ^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:180:25
|
|
|
|
|
LL | while let Some(_) | Some(true) = bool_option {}
|
|
| ^^^^^^^^^^
|
|
|
|
error: aborting due to 35 previous errors
|
|
|