1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/parser/tests/struct_update_err.out
2021-01-25 15:29:07 +02:00

8 lines
204 B
Plaintext

vlib/v/parser/tests/struct_update_err.vv:15:3: error: unexpected `...`, expecting `name`
13 | f2 := Foo{
14 | name: 'f2'
15 | ...f
| ~~~
16 | }
17 | }