Sign in
go
/
talks
/
dc5a11b2c169ac40c3401581e4161e2fc9efc40e
/
.
/
2014
/
playground
/
deadlock.go
blob: 2cafec8473749387da4063b1580c4739b98ef700 [
file
] [
log
] [
blame
]
package main
func main() {
c := make(chan int)
<-c
}