v2 / vlib / v / gen / c / testdata / live_nested_call_nix.vv
15 lines · 13 sloc · 146 bytes · 53a26afe327acad76c5d837cafa9db25415bf3b9
Raw
1// vtest vflags: -live
2import time
3
4@[live]
5fn main() {
6 for {
7 f()
8 time.sleep(20 * time.millisecond)
9 }
10}
11
12@[live]
13fn f() {
14 println('f()')
15}
16