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

8 lines
188 B
Plaintext

vlib/v/parser/tests/const_decl_err.vv:6:3: error: const declaration do not support multiple assign yet
4 |
5 | const (
6 | a, b, c = foo()
| ^
7 | )
8 |