v2 / vlib / v / checker / tests / const_expr_match_range_invalid_err.vv
13 lines · 11 sloc · 122 bytes · a9b41d298095cf7814e9597dfb0f6b9abdd1686b
Raw
1const start = 1
2
3const end = 20
4
5match 5 {
6 start...`1` {
7 println(start)
8 }
9 'str'...end {
10 println(end)
11 }
12 else {}
13}
14