For the below code:
package main func main() { ch := make(chan int) ch <- 5 }
go run gives deadlock error:
go run