v2 / vlib / v / checker / tests / expr_evaluated_but_not_used.vv
10 lines · 10 sloc · 94 bytes · 14d378c33043f51c371a4f154249d323b9bc5a3a
Raw
1fn main() {
2 {
3 println(1)
4 println(2)
5 println(3)
6 println(4)
7 5
8 }
9 println('works')
10}
11