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
439 B
Plaintext
Raw Normal View History

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