1
Fork 0

Revert "Remove #![feature(never_type)] from tests."

This reverts commit 8f6197f39f.
This commit is contained in:
Niko Matsakis 2019-12-11 09:51:28 -05:00
parent ca8154861e
commit 1719337d02
90 changed files with 268 additions and 98 deletions

View file

@ -1,5 +1,5 @@
error[E0005]: refutable pattern in local binding: `T(_, _)` not covered
--> $DIR/empty-never-array.rs:8:9
--> $DIR/empty-never-array.rs:10:9
|
LL | / enum Helper<T, U> {
LL | | T(T, [!; 0]),
@ -20,7 +20,7 @@ LL | if let Helper::U(u) = Helper::T(t, []) { /* */ }
|
error[E0381]: use of possibly-uninitialized variable: `u`
--> $DIR/empty-never-array.rs:10:5
--> $DIR/empty-never-array.rs:12:5
|
LL | u
| ^ use of possibly-uninitialized `u`