v2 / vlib / v / checker / tests / match_missing.vv
11 lines · 9 sloc · 84 bytes · ba577e4e5fda52388a5755712659631a81e66093
Raw
1match true {
2}
3
4match true {
5 else {}
6 else {}
7}
8
9match true {
10 'foo' == 'bar' {}
11}
12