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