v2 / vlib / v / tests / enums / enum_with_comptime_const_test.v
10 lines · 8 sloc · 152 bytes · c01186c7299928ce0ccd1355f085d5ddbca93c56
Raw
1const enum_value = $if linux { 1 } $else { 2 }
2
3pub enum Test {
4 a = enum_value
5}
6
7fn test_enum_with_comptime_const() {
8 println(Test.a)
9 assert true
10}
11