Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
project_issue_27078
/
misc.v
14
lines
·
11
sloc
·
128 bytes
·
1b91ac324e7254fe19b25ff731f631795434c56a
Raw
1
module
main
2
3
enum
TestEnum {
4
one
5
two
6
_max
7
}
8
9
const
te_max = int(TestEnum._max)
10
11
struct
TestStruct {
12
mut
:
13
list [te_max]int
14
}
15