rust/tests/ui/parser/issues/issue-57684.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

25 lines
470 B
Plaintext

error: expected `:`, found `=`
--> $DIR/issue-57684.rs:27:20
|
LL | let _ = X { f1 = 5 };
| ^
|
help: replace equals symbol with a colon
|
LL | let _ = X { f1: 5 };
| ~
error: expected `:`, found `=`
--> $DIR/issue-57684.rs:32:12
|
LL | f1 = 5,
| ^
|
help: replace equals symbol with a colon
|
LL | f1: 5,
| ~
error: aborting due to 2 previous errors