v2 / vlib / v / parser / tests / select_else_2.vv
18 lines · 16 sloc · 205 bytes · 1bc906357319d2fd72399868b18bcc353639ab59
Raw
1import time
2
3fn f3_bad(ch1 chan int) {
4 a := 5
5 select {
6 b := <-ch1 {
7 println(b)
8 }
9 > 30 * time.millisecond {
10 println('bad')
11 }
12 else {
13 println("shouldn't get here")
14 }
15 }
16}
17
18fn main() {}
19