rust/src/test/ui/reachable/expr_method.stderr
Andrew Cann a9fc3901b0 stabilise feature(never_type)
Replace feature(never_type) with feature(exhaustive_patterns).
feature(exhaustive_patterns) only covers the pattern-exhaustives checks
that used to be covered by feature(never_type)
2018-03-14 12:44:51 +08:00

20 lines
463 B
Text

error: unreachable expression
--> $DIR/expr_method.rs:25:21
|
LL | Foo.foo(return, 22); //~ ERROR unreachable
| ^^
|
note: lint level defined here
--> $DIR/expr_method.rs:14:9
|
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: unreachable expression
--> $DIR/expr_method.rs:30:5
|
LL | Foo.bar(return); //~ ERROR unreachable
| ^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors