1
Fork 0

Fixed grammar/style in error messages and reblessed tests.

This commit is contained in:
Alexander Regueiro 2019-09-01 18:09:59 +01:00
parent 618768492f
commit 022d9c8eb5
125 changed files with 381 additions and 380 deletions

View file

@ -11,11 +11,11 @@ LL | | }
LL | let Helper::U(u) = Helper::T(t, []);
| ^^^^^^^^^^^^ pattern `T(_, _)` not covered
error[E0381]: use of possibly uninitialized variable: `u`
error[E0381]: use of possibly-uninitialized variable: `u`
--> $DIR/empty-never-array.rs:12:5
|
LL | u
| ^ use of possibly uninitialized `u`
| ^ use of possibly-uninitialized `u`
error: aborting due to 2 previous errors