Quick actions

cmd+k|ctrl+k

Navigation

Languages

Channels and select / Closing channels / Essential Go

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-26T10:15:17Z

Updated

2019-03-26T10:15:17Z

package main

func main() {
	ch := make(chan int)
	close(ch)
	ch <- 5 // panics
}
INFO