os-rust/tests/ui/reachable/unreachable-try-pattern.stderr

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

45 lines
1.7 KiB
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
warning: unreachable expression
2018-12-25 08:56:47 -07:00
--> $DIR/unreachable-try-pattern.rs:19:36
2018-08-08 14:28:26 +02:00
|
LL | let y = (match x { Ok(n) => Ok(n as u32), Err(e) => Err(e) })?;
| -^^^^^^^
| |
| unreachable expression
| any code following this expression is unreachable
2018-08-08 14:28:26 +02:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 08:56:47 -07:00
--> $DIR/unreachable-try-pattern.rs:3:9
2018-08-08 14:28:26 +02:00
|
LL | #![warn(unreachable_code)]
| ^^^^^^^^^^^^^^^^
warning: unreachable pattern
2018-12-25 08:56:47 -07:00
--> $DIR/unreachable-try-pattern.rs:19:24
2018-08-08 14:28:26 +02:00
|
LL | let y = (match x { Ok(n) => Ok(n as u32), Err(e) => Err(e) })?;
| ^^^^^-----------------
| |
| matches no values because `!` is uninhabited
| help: remove the match arm
2018-08-08 14:28:26 +02:00
|
= note: to learn more about uninhabited types, see https://doc.rust-lang.org/nomicon/exotic-sizes.html#empty-types
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 08:56:47 -07:00
--> $DIR/unreachable-try-pattern.rs:4:9
2018-08-08 14:28:26 +02:00
|
LL | #![warn(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
warning: unreachable pattern
2018-12-25 08:56:47 -07:00
--> $DIR/unreachable-try-pattern.rs:30:40
2018-08-08 14:28:26 +02:00
|
LL | let y = (match x { Ok(n) => Ok(n), Err(e) => Err(e) })?;
| ^^^^^^----------
| |
| matches no values because `Void` is uninhabited
| help: remove the match arm
|
= note: to learn more about uninhabited types, see https://doc.rust-lang.org/nomicon/exotic-sizes.html#empty-types
2018-08-08 14:28:26 +02:00
warning: 3 warnings emitted