a9fc3901b0
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)
27 lines
595 B
Plaintext
27 lines
595 B
Plaintext
error: unreachable expression
|
|
--> $DIR/expr_assign.rs:19:5
|
|
|
|
|
LL | x = return; //~ ERROR unreachable
|
|
| ^^^^^^^^^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/expr_assign.rs:14:9
|
|
|
|
|
LL | #![deny(unreachable_code)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: unreachable expression
|
|
--> $DIR/expr_assign.rs:29:14
|
|
|
|
|
LL | *p = return; //~ ERROR unreachable
|
|
| ^^^^^^
|
|
|
|
error: unreachable expression
|
|
--> $DIR/expr_assign.rs:35:15
|
|
|
|
|
LL | *{return; &mut i} = 22; //~ ERROR unreachable
|
|
| ^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|