rust/tests/ui/reachable/expr_method.stderr

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

25 lines
622 B
Plaintext
Raw Normal View History

error: unreachable expression
--> $DIR/expr_method.rs:16:21
|
2019-03-09 12:03:44 +00:00
LL | Foo.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_method.rs:5:9
|
2018-02-23 00:42:32 +00:00
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: unreachable call
--> $DIR/expr_method.rs:21:9
|
2019-03-09 12:03:44 +00:00
LL | Foo.bar(return);
| ^^^ ------ any code following this expression is unreachable
| |
| unreachable call
error: aborting due to 2 previous errors