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
521 B
Text
20 lines
521 B
Text
error: unreachable expression
|
|
--> $DIR/expr_array.rs:19:34
|
|
|
|
|
LL | let x: [usize; 2] = [return, 22]; //~ ERROR unreachable
|
|
| ^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/expr_array.rs:14:9
|
|
|
|
|
LL | #![deny(unreachable_code)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: unreachable expression
|
|
--> $DIR/expr_array.rs:24:25
|
|
|
|
|
LL | let x: [usize; 2] = [22, return]; //~ ERROR unreachable
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|