rust/tests/ui/reachable/expr_call.stderr

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

25 lines
584 B
Plaintext
Raw Normal View History

error: unreachable expression
--> $DIR/expr_call.rs:13:17
|
2019-03-09 12:03:44 +00:00
LL | foo(return, 22);
| ------ ^^ unreachable expression
| |
| any code following this expression is unreachable
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
--> $DIR/expr_call.rs:5:9
|
2018-02-23 00:42:32 +00:00
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: unreachable call
--> $DIR/expr_call.rs:18:5
|
2019-03-09 12:03:44 +00:00
LL | bar(return);
| ^^^ ------ any code following this expression is unreachable
| |
| unreachable call
error: aborting due to 2 previous errors