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_mut_in_range.out

5 lines
144 B
Plaintext

vlib/v/parser/tests/for_mut_in_range.vv:1:5: error: variable in range `for` cannot be mut
1 | for mut i in 0..5 {
| ~~~
2 | }