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

9 lines
71 B
V

fn main() {
if true {
1 + 1
1 + 1
} else {
1 + 1
}
}