v2 / vlib / v / gen / c / testdata / comptime_if_assign_termux.vv
14 lines · 13 sloc · 300 bytes · 69811c46e22efd6730b1801882ecb6bdbe3943bd
Raw
1// vtest vflags: -gc none -os termux -prod
2const linux_default_paths = ['linux']
3const termux_default_paths = ['termux-1', 'termux-2']
4
5fn main() {
6 default_paths := $if linux {
7 linux_default_paths
8 } $else $if termux {
9 termux_default_paths
10 } $else {
11 ['fallback']
12 }
13 println(default_paths)
14}
15