2019-11-26 08:53:54 -06:00
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:15:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (1,) => {}
|
|
|
|
| ^^^^
|
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:3:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:20:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (2,) => {}
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:26:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (1 | 2,) => {}
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:31:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (1, 3) => {}
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:32:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (1, 4) => {}
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:33:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (2, 4) => {}
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:34:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (2 | 1, 4) => {}
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:36:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (1, 4 | 5) => {}
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:41:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (Some(1),) => {}
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:42:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (None,) => {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:47:9
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | ((1..=4,),) => {},
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2019-11-29 07:02:14 -06:00
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:53:12
|
2019-11-29 07:02:14 -06:00
|
|
|
|
|
|
|
|
LL | | 1,) => {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:60:15
|
2019-11-29 07:02:14 -06:00
|
|
|
|
|
|
|
|
LL | | 0] => {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:58:15
|
2019-11-29 07:02:14 -06:00
|
|
|
|
|
|
|
|
LL | | 0
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:68:10
|
2019-11-29 07:02:14 -06:00
|
|
|
|
|
|
|
|
LL | [1
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:74:14
|
2019-11-29 07:02:14 -06:00
|
|
|
|
|
|
|
|
LL | Some(0
|
|
|
|
| ^
|
|
|
|
|
2019-11-26 08:53:54 -06:00
|
|
|
error: or-patterns are not fully implemented yet
|
2019-12-27 06:03:03 -06:00
|
|
|
--> $DIR/exhaustiveness-unreachable-pattern.rs:9:10
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | (0 | _,) => {}
|
|
|
|
| ^^^^^
|
|
|
|
|
2019-11-29 07:02:14 -06:00
|
|
|
error: aborting due to 17 previous errors
|
2019-11-26 08:53:54 -06:00
|
|
|
|