v/vlib/v/checker/tests/match_return_mismatch_type_...

8 lines
72 B
V

fn main() {
a := match 1 {
1 { 'aa' }
else { 22 }
}
println(a)
}