mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
24 lines
748 B
Plaintext
24 lines
748 B
Plaintext
error: expected one of `,`, `.`, `?`, `}`, or an operator, found `second`
|
|
--> $DIR/struct-initializer-comma.rs:12:9
|
|
|
|
|
LL | let _ = Foo {
|
|
| --- while parsing this struct
|
|
LL |
|
|
LL | first: true
|
|
| -
|
|
| |
|
|
| expected one of `,`, `.`, `?`, `}`, or an operator
|
|
| help: try adding a comma: `,`
|
|
LL | second: 25
|
|
| ^^^^^^ unexpected token
|
|
|
|
error[E0063]: missing field `second` in initializer of `Foo`
|
|
--> $DIR/struct-initializer-comma.rs:9:13
|
|
|
|
|
LL | let _ = Foo {
|
|
| ^^^ missing `second`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0063`.
|