mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
error: expected `:`, found `=`
|
|
--> $DIR/issue-57684.rs:27:20
|
|
|
|
|
LL | let _ = X { f1 = 5 };
|
|
| -^
|
|
| |
|
|
| help: replace equals symbol with a colon: `:`
|
|
|
|
error: expected `:`, found `=`
|
|
--> $DIR/issue-57684.rs:32:12
|
|
|
|
|
LL | f1 = 5,
|
|
| -^
|
|
| |
|
|
| help: replace equals symbol with a colon: `:`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|