v2 / vlib / v / gen / c / testdata / comptime_if.c.must_have
9 lines · 9 sloc · 193 bytes · 32ad8de8a4347b85954f526f4890f0450fd9796e
Raw
1string _t1;
2#if defined(CUSTOM_DEFINE_some_custom_define)
3#elif defined(CUSTOM_DEFINE_some_other_define)
4 _t1 = _S("xyz");
5 ;
6#else
7#endif
8 string platform = _t1;
9builtin__println(platform);