1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00
semantic/test/fixtures/go/select-statements.A.go

25 lines
273 B
Go
Raw Normal View History

2017-02-23 21:06:49 +03:00
package main
func main() {
select {
case x := <-c:
println(x)
case y <- c:
println(5)
case <-time.After(1):
println(6)
2017-11-15 21:10:14 +03:00
n--
if x {
waitDone <- result{n, x}
return
}
default:
return
2017-02-23 21:06:49 +03:00
}
2017-11-15 01:04:06 +03:00
select {
case <-ch:
case <-timeout:
default:
}
2017-02-23 21:06:49 +03:00
}