v2 / vlib / v / tests / project_issue_27078 / misc.v
14 lines · 11 sloc · 128 bytes · 1b91ac324e7254fe19b25ff731f631795434c56a
Raw
1module main
2
3enum TestEnum {
4 one
5 two
6 _max
7}
8
9const te_max = int(TestEnum._max)
10
11struct TestStruct {
12mut:
13 list [te_max]int
14}
15