rust/tests/ui/rfcs/rfc-0000-never_patterns/unreachable.exh_pats.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-01-18 08:06:46 -06:00
error: unreachable pattern
2024-07-27 04:08:16 -05:00
--> $DIR/unreachable.rs:16:9
2024-01-18 08:06:46 -06:00
|
LL | Err(!),
| ^^^^^^
|
= note: this pattern matches no values because `Void` is uninhabited
2024-01-18 08:06:46 -06:00
note: the lint level is defined here
2024-07-27 04:08:16 -05:00
--> $DIR/unreachable.rs:6:9
2024-01-18 08:06:46 -06:00
|
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: unreachable pattern
2024-07-27 04:08:16 -05:00
--> $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
2024-07-27 04:08:16 -05:00
--> $DIR/unreachable.rs:21:12
2024-01-18 08:06:46 -06:00
|
LL | if let Err(!) = res_void {}
| ^^^^^^
|
= note: this pattern matches no values because `Void` is uninhabited
2024-01-18 08:06:46 -06:00
error: unreachable pattern
2024-07-27 04:08:16 -05:00
--> $DIR/unreachable.rs:23:24
2024-01-18 08:06:46 -06:00
|
LL | if let (Ok(true) | Err(!)) = res_void {}
| ^^^^^^
|
= note: this pattern matches no values because `Void` is uninhabited
2024-01-18 08:06:46 -06:00
error: unreachable pattern
2024-07-27 04:08:16 -05:00
--> $DIR/unreachable.rs:25:23
2024-01-18 08:06:46 -06:00
|
LL | for (Ok(mut _x) | Err(!)) in [res_void] {}
| ^^^^^^
|
= note: this pattern matches no values because `Void` is uninhabited
2024-01-18 08:06:46 -06:00
error: unreachable pattern
2024-07-27 04:08:16 -05:00
--> $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
2024-01-18 08:06:46 -06:00