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)
20 lines
463 B
Text
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
|
|
|