1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/struct_update_err.out

8 lines
208 B
Plaintext

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