vlib/v/checker/tests/if_expr_mismatch.vv:2:7: error: mismatched types `string` and `any_int`
1 | fn main() {
2 | s := if true { '12' } else { 12 }
| ~~
3 | println(s)
4 | }