v2 / vlib / v / tests / comptime / comptime_if_threads_no_test.v
11 lines · 10 sloc · 114 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn abc() {
2 // go fn() {}()
3}
4
5fn test_if_threads() {
6 $if threads {
7 assert false
8 } $else {
9 assert true
10 }
11}
12