v/vlib/v/checker/tests/if_expr_mismatch.vv

5 lines
61 B
V

fn main() {
s := if true { '12' } else { 12 }
println(s)
}