2017-03-21 09:41:41 -04:00
|
|
|
error: unreachable expression
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/expr_call.rs:13:17
|
2017-03-21 09:41:41 -04:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | foo(return, 22);
|
2017-03-21 09:41:41 -04:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/expr_call.rs:5:9
|
2017-03-21 09:41:41 -04:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | #![deny(unreachable_code)]
|
2017-03-21 09:41:41 -04:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2019-09-18 18:22:13 -04:00
|
|
|
note: any code following this expression is unreachable
|
|
|
|
--> $DIR/expr_call.rs:13:9
|
|
|
|
|
|
|
|
|
LL | foo(return, 22);
|
|
|
|
| ^^^^^^
|
2017-03-21 09:41:41 -04:00
|
|
|
|
2019-09-07 00:16:11 +08:00
|
|
|
error: unreachable call
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/expr_call.rs:18:5
|
2017-03-21 09:41:41 -04:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | bar(return);
|
2019-09-07 00:16:11 +08:00
|
|
|
| ^^^
|
2019-09-18 18:22:13 -04:00
|
|
|
|
|
|
|
|
note: any code following this expression is unreachable
|
|
|
|
--> $DIR/expr_call.rs:18:9
|
|
|
|
|
|
|
|
|
LL | bar(return);
|
|
|
|
| ^^^^^^
|
2017-03-21 09:41:41 -04:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to 2 previous errors
|
2017-03-21 09:41:41 -04:00
|
|
|
|