summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/struct-initializer-comma.stderr
blob: 5eff43f32cda15e97945e53a754140c989249ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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`.