1
Fork 0

Tweak spans for E0599

This commit is contained in:
Esteban Küber 2019-03-10 16:20:15 -07:00
parent 0f118f6a6c
commit 1b0ab0b8a9
28 changed files with 72 additions and 133 deletions

View file

@ -50,19 +50,19 @@ error[E0599]: no variant named `Empty3` found for type `empty_struct::XE` in the
--> $DIR/empty-struct-braces-expr.rs:22:19
|
LL | let xe3 = XE::Empty3;
| ----^^^^^^
| | |
| | help: did you mean: `XEmpty3`
| variant not found in `empty_struct::XE`
| ^^^^^^
| |
| variant not found in `empty_struct::XE`
| help: did you mean: `XEmpty3`
error[E0599]: no variant named `Empty3` found for type `empty_struct::XE` in the current scope
--> $DIR/empty-struct-braces-expr.rs:23:19
|
LL | let xe3 = XE::Empty3();
| ----^^^^^^
| | |
| | help: did you mean: `XEmpty3`
| variant not found in `empty_struct::XE`
| ^^^^^^
| |
| variant not found in `empty_struct::XE`
| help: did you mean: `XEmpty3`
error: aborting due to 8 previous errors