rust/tests/ui/reachable/expr_again.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
534 B
Plaintext
Raw Normal View History

error: unreachable statement
2018-12-25 15:56:47 +00:00
--> $DIR/expr_again.rs:8:9
|
LL | continue;
| -------- any code following this expression is unreachable
2018-02-23 00:42:32 +00:00
LL | println!("hi");
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^^^^ unreachable statement
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 15:56:47 +00:00
--> $DIR/expr_again.rs:3:9
|
2018-02-23 00:42:32 +00:00
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
= note: this error originates in the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to previous error