mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
23 lines
525 B
Plaintext
23 lines
525 B
Plaintext
|
error: unreachable expression
|
||
|
--> $DIR/unwarned-match-on-never.rs:10:5
|
||
|
|
|
||
|
LL | match x {} //~ ERROR: unreachable expression
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
note: lint level defined here
|
||
|
--> $DIR/unwarned-match-on-never.rs:1:9
|
||
|
|
|
||
|
LL | #![deny(unreachable_code)]
|
||
|
| ^^^^^^^^^^^^^^^^
|
||
|
|
||
|
error: unreachable expression
|
||
|
--> $DIR/unwarned-match-on-never.rs:15:5
|
||
|
|
|
||
|
LL | / match () { //~ ERROR: unreachable expression
|
||
|
LL | | () => (),
|
||
|
LL | | }
|
||
|
| |_____^
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|