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

7 lines
186 B
Plaintext

vlib/v/parser/tests/inc_use_as_value.vv:2:14: error: cannot use i++ as value
1 | fn main() {
2 | for i := 0; i++; i < 100 {
| ^
3 | }
4 | }