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