blob: db9d5c3d22c1a73b96ca0af04b7d5cc335791228 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
error: unreachable expression
--> $DIR/expr_method.rs:26:21
|
26 | Foo.foo(return, 22); //~ ERROR unreachable
| ^^
|
note: lint level defined here
--> $DIR/expr_method.rs:14:9
|
14 | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: unreachable expression
--> $DIR/expr_method.rs:31:5
|
31 | Foo.bar(return); //~ ERROR unreachable
| ^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
|