mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
17 lines
437 B
Plaintext
17 lines
437 B
Plaintext
error: unreachable statement
|
|
--> $DIR/match-no-arms-unreachable-after.rs:8:5
|
|
|
|
|
LL | match v { }
|
|
| ----------- any code following this expression is unreachable
|
|
LL | let x = 2;
|
|
| ^^^^^^^^^^ unreachable statement
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/match-no-arms-unreachable-after.rs:2:9
|
|
|
|
|
LL | #![deny(unreachable_code)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|