1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/comptime_if_threads_no_test.v

12 lines
114 B
V

fn abc() {
// go fn() {}()
}
fn test_if_threads() {
$if threads {
assert false
} $else {
assert true
}
}