rust/tests/ui/reachable/expr_add.stderr

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

18 lines
441 B
Plaintext
Raw Normal View History

error: unreachable expression
--> $DIR/expr_add.rs:17:13
|
2019-03-09 20:03:44 +08:00
LL | let x = Foo + return;
| ^^^^^^------
| | |
| | any code following this expression is unreachable
| unreachable expression
|
2020-01-23 07:57:38 +08:00
note: the lint level is defined here
--> $DIR/expr_add.rs:3:9
|
2018-02-23 08:42:32 +08:00
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error