v2 / vlib / v / tests / skip_unused / for_c_stmt.vv
9 lines · 8 sloc · 105 bytes · 7d47219808f5517417290f4bbae4bc1fda35e5ba
Raw
1const abc = 12
2
3fn main() {
4 println('ok')
5 for x := abc; x < 15; x++ {
6 println(x)
7 }
8 println('ok')
9}
10