v2 / vlib / v / tests / options / or_expr_with_comptime_test.v
9 lines · 8 sloc · 67 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn foo() ! {
2}
3
4fn test_bar() {
5 foo() or {
6 $if linux {
7 }
8 }
9}
10