1error: unreachable expression
2  --> $DIR/expr_call.rs:13:17
3   |
4LL |     foo(return, 22);
5   |         ------  ^^ unreachable expression
6   |         |
7   |         any code following this expression is unreachable
8   |
9note: the lint level is defined here
10  --> $DIR/expr_call.rs:5:9
11   |
12LL | #![deny(unreachable_code)]
13   |         ^^^^^^^^^^^^^^^^
14
15error: unreachable call
16  --> $DIR/expr_call.rs:18:5
17   |
18LL |     bar(return);
19   |     ^^^ ------ any code following this expression is unreachable
20   |     |
21   |     unreachable call
22
23error: aborting due to 2 previous errors
24
25