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

5 lines
152 B
Plaintext

vlib/v/parser/tests/for_index_in_range.vv:1:5: error: cannot declare index variable with range `for`
1 | for i, k in 0..5 {
| ^
2 | }