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

7 lines
188 B
Plaintext

vlib/v/parser/tests/dec_use_as_value.vv:2:16: error: cannot use i-- as value
1 | fn main() {
2 | for i := 100; i--; i > 0 {
| ^
3 | }
4 | }