github.com/kidsbmilk/gofrontend_all@v0.0.0-20220701224323-6479d5976c5d/libgo/misc/cgo/testshared/testdata/trivial/trivial.go (about)

     1  package main
     2  
     3  func main() {
     4  	// This is enough to make sure that the executable references
     5  	// a type descriptor, which was the cause of
     6  	// https://golang.org/issue/25970.
     7  	c := make(chan int)
     8  	_ = c
     9  }