Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
enums
/
enum_with_comptime_const_test.v
10
lines
·
8
sloc
·
152 bytes
·
c01186c7299928ce0ccd1355f085d5ddbca93c56
Raw
1
const
enum_value = $
if
linux { 1 } $
else
{ 2 }
2
3
pub
enum
Test {
4
a = enum_value
5
}
6
7
fn
test_enum_with_comptime_const() {
8
println(Test.a)
9
assert
true
10
}
11