rust/tests/ui/structs/struct-duplicate-comma.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

17 lines
336 B
Plaintext

error: expected identifier, found `,`
--> $DIR/struct-duplicate-comma.rs:11:14
|
LL | let _ = Foo {
| --- while parsing this struct
LL | a: 0,,
| ^ expected identifier
|
help: remove this comma
|
LL - a: 0,,
LL + a: 0,
|
error: aborting due to 1 previous error