2018-10-16 08:56:39 -05:00
|
|
|
error: unreachable expression
|
|
|
|
--> $DIR/unwarned-match-on-never.rs:10:5
|
|
|
|
|
|
2018-10-17 18:05:19 -05:00
|
|
|
LL | match x {} //~ ERROR unreachable expression
|
2018-10-16 08:56:39 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/unwarned-match-on-never.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unreachable_code)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-10-17 18:05:19 -05:00
|
|
|
error: unreachable arm
|
|
|
|
--> $DIR/unwarned-match-on-never.rs:15:15
|
|
|
|
|
|
|
|
|
LL | () => () //~ ERROR unreachable arm
|
|
|
|
| ^^
|
|
|
|
|
2018-10-16 08:56:39 -05:00
|
|
|
error: unreachable expression
|
2018-10-17 18:05:19 -05:00
|
|
|
--> $DIR/unwarned-match-on-never.rs:21:5
|
2018-10-16 08:56:39 -05:00
|
|
|
|
|
2018-10-17 18:05:19 -05:00
|
|
|
LL | / match () { //~ ERROR unreachable expression
|
2018-10-16 08:56:39 -05:00
|
|
|
LL | | () => (),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
2018-10-17 18:05:19 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2018-10-16 08:56:39 -05:00
|
|
|
|