Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
const_expr_match_range_invalid_err.vv
13
lines
·
11
sloc
·
122 bytes
·
a9b41d298095cf7814e9597dfb0f6b9abdd1686b
Raw
1
const start = 1
2
3
const end = 20
4
5
match 5 {
6
start...`1` {
7
println(start)
8
}
9
'str'...end {
10
println(end)
11
}
12
else {}
13
}
14