v/vlib/v/checker/tests/match_undefined_cond.vv

11 lines
105 B
V

type Asd = int
fn main() {
res := match Asd {
1 { 'foo' }
2 { 'test' }
else { '' }
}
_ = res
}