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