v/vlib/v/checker/tests/if_expr_last_stmt.vv

8 lines
83 B
V

fn main() {
_ = if true {
1
} else if false {
} else {
}
}