about summary refs log tree commit diff
path: root/src/test/ui/struct-field-init-syntax.stderr
blob: 2c4ae0e472bd55d7c0614a897dbf9580a009bda7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: cannot use a comma after the base struct
  --> $DIR/struct-field-init-syntax.rs:18:9
   |
LL |         ..Foo::default(),
   |         ^^^^^^^^^^^^^^^^- help: remove this comma
   |
   = note: the base struct must always be the last field

error: cannot use a comma after the base struct
  --> $DIR/struct-field-init-syntax.rs:23:9
   |
LL |         ..Foo::default(),
   |         ^^^^^^^^^^^^^^^^- help: remove this comma
   |
   = note: the base struct must always be the last field

error: aborting due to 2 previous errors