2017-03-21 08:41:41 -05:00
|
|
|
error: unreachable expression
|
2019-12-11 08:51:28 -06:00
|
|
|
--> $DIR/expr_method.rs:16:21
|
2017-03-21 08:41:41 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Foo.foo(return, 22);
|
2019-09-21 14:33:02 -05:00
|
|
|
| ------ ^^ unreachable expression
|
|
|
|
| |
|
|
|
|
| any code following this expression is unreachable
|
2017-03-21 08:41:41 -05:00
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2019-12-11 08:51:28 -06:00
|
|
|
--> $DIR/expr_method.rs:5:9
|
2017-03-21 08:41:41 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #![deny(unreachable_code)]
|
2017-03-21 08:41:41 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
2019-09-06 11:16:11 -05:00
|
|
|
error: unreachable call
|
2019-12-11 08:51:28 -06:00
|
|
|
--> $DIR/expr_method.rs:21:9
|
2017-03-21 08:41:41 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Foo.bar(return);
|
2019-09-21 14:33:02 -05:00
|
|
|
| ^^^ ------ any code following this expression is unreachable
|
|
|
|
| |
|
|
|
|
| unreachable call
|
2017-03-21 08:41:41 -05:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2017-03-21 08:41:41 -05:00
|
|
|
|