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

7 lines
265 B
Plaintext

vlib/v/parser/tests/fixed_array_size_using_non_constant_err.vv:9:25: error: fixed array size cannot use non-constant value
7 | println(typeof(t.len).name)
8 |
9 | mut score := [t.len][t.len]int{}
| ~~~
10 | }