rust/tests/ui/match/match-no-arms-unreachable-after.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

17 lines
439 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 1 previous error