v2 / vlib / v / tests / comptime / comptime_if_check_const_test.v
10 lines · 9 sloc · 95 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1const x = $d('x', true)
2
3fn test_main() {
4 a := $if x {
5 1
6 } $else {
7 0
8 }
9 assert a == 1
10}
11