mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
19 lines
486 B
Plaintext
19 lines
486 B
Plaintext
error: struct fields are separated by `,`
|
|
--> $DIR/struct-parser-recovery-issue-126344.rs:2:11
|
|
|
|
|
LL | struct Wrong {
|
|
| ----- while parsing this struct
|
|
LL | x: i32;
|
|
| ^ help: replace `;` with `,`
|
|
|
|
error: expected type, found `1`
|
|
--> $DIR/struct-parser-recovery-issue-126344.rs:21:8
|
|
|
|
|
LL | struct WrongWithType {
|
|
| ------------- while parsing this struct
|
|
LL | x: 1,
|
|
| ^ expected type
|
|
|
|
error: aborting due to 2 previous errors
|
|
|