mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
17 lines
443 B
Plaintext
17 lines
443 B
Plaintext
error: unreachable statement
|
|
--> $DIR/lint-attr-non-item-node.rs:7:9
|
|
|
|
|
LL | break;
|
|
| ----- any code following this expression is unreachable
|
|
LL | "unreachable";
|
|
| ^^^^^^^^^^^^^^ unreachable statement
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/lint-attr-non-item-node.rs:4:12
|
|
|
|
|
LL | #[deny(unreachable_code)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|