mirror of https://github.com/rust-lang/rust
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
error: unreachable pattern
|
|
--> $DIR/unreachable.rs:16:9
|
|
|
|
|
LL | Err(!),
|
|
| ^^^^^^
|
|
|
|
|
= note: this pattern matches no values because `Void` is uninhabited
|
|
note: the lint level is defined here
|
|
--> $DIR/unreachable.rs:6:9
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/unreachable.rs:19:19
|
|
|
|
|
LL | let (Ok(_x) | Err(!)) = res_void;
|
|
| ^^^^^^
|
|
|
|
|
= note: this pattern matches no values because `Void` is uninhabited
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/unreachable.rs:21:12
|
|
|
|
|
LL | if let Err(!) = res_void {}
|
|
| ^^^^^^
|
|
|
|
|
= note: this pattern matches no values because `Void` is uninhabited
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/unreachable.rs:23:24
|
|
|
|
|
LL | if let (Ok(true) | Err(!)) = res_void {}
|
|
| ^^^^^^
|
|
|
|
|
= note: this pattern matches no values because `Void` is uninhabited
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/unreachable.rs:25:23
|
|
|
|
|
LL | for (Ok(mut _x) | Err(!)) in [res_void] {}
|
|
| ^^^^^^
|
|
|
|
|
= note: this pattern matches no values because `Void` is uninhabited
|
|
|
|
error: unreachable pattern
|
|
--> $DIR/unreachable.rs:29:18
|
|
|
|
|
LL | fn foo((Ok(_x) | Err(!)): Result<bool, Void>) {}
|
|
| ^^^^^^
|
|
|
|
|
= note: this pattern matches no values because `Void` is uninhabited
|
|
|
|
error: aborting due to 6 previous errors
|
|
|