rust/tests/ui/suggestions/struct-initializer-comma.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
748 B
Plaintext
Raw Normal View History

error: expected one of `,`, `.`, `?`, `}`, or an operator, found `second`
2020-07-02 05:32:12 +00:00
--> $DIR/struct-initializer-comma.rs:12:9
|
2020-07-02 05:32:12 +00:00
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`
2020-07-02 05:32:12 +00:00
--> $DIR/struct-initializer-comma.rs:9:13
|
2020-07-02 05:32:12 +00:00
LL | let _ = Foo {
| ^^^ missing `second`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0063`.