1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/match_multi_else_branch_err.vv
2023-06-22 22:39:35 +03:00

8 lines
75 B
V

fn main() {
_ := match true {
true { 1 }
else { 3 }
else { 5 }
}
}