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