rust/tests/ui/structs/struct-field-init-syntax.stderr
Esteban Küber 692bc344d5 Make parse error suggestions verbose and fix spans
Go over all structured parser suggestions and make them verbose style.

When suggesting to add or remove delimiters, turn them into multiple suggestion parts.
2024-07-12 03:02:57 +00:00

29 lines
674 B
Plaintext

error: cannot use a comma after the base struct
--> $DIR/struct-field-init-syntax.rs:11:9
|
LL | ..Foo::default(),
| ^^^^^^^^^^^^^^^^
|
= note: the base struct must always be the last field
help: remove this comma
|
LL - ..Foo::default(),
LL + ..Foo::default()
|
error: cannot use a comma after the base struct
--> $DIR/struct-field-init-syntax.rs:16:9
|
LL | ..Foo::default(),
| ^^^^^^^^^^^^^^^^
|
= note: the base struct must always be the last field
help: remove this comma
|
LL - ..Foo::default(),
LL + ..Foo::default()
|
error: aborting due to 2 previous errors