Sign in
go
/
website
/
06562a2885c91e4dae9e04d8bb9a796d02ee4527
/
.
/
_content
/
talks
/
2014
/
playground
/
deadlock.go
blob: 9726526d73e33450884b54307fa548941da01ab3 [
file
] [
log
] [
blame
]
// +build ignore,OMIT
package main
func main() {
c := make(chan int)
<-c
}