blob: 613fc31b8613e970e524ab0355e4bb342ac6642b [file] [log] [blame]
error: unreachable expression
--> $DIR/expr_call.rs:12:17
|
LL | foo(return, 22);
| ------ ^^ unreachable expression
| |
| any code following this expression is unreachable
|
note: lint level defined here
--> $DIR/expr_call.rs:4:9
|
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: unreachable call
--> $DIR/expr_call.rs:17:5
|
LL | bar(return);
| ^^^ ------ any code following this expression is unreachable
| |
| unreachable call
error: aborting due to 2 previous errors