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