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_in_mut_index_of_array.out
2021-01-21 12:46:15 +01:00

8 lines
252 B
Plaintext

vlib/v/parser/tests/for_in_mut_index_of_array.vv:3:6: error: index of array or key of map cannot be mutated
1 | fn main() {
2 | mut m := [1, 2, 3]
3 | for mut i, _ in m {
| ~~~
4 | println(i)
5 | }