github.com/traefik/yaegi@v0.15.1/_test/select11.go (about)

     1  package main
     2  
     3  func main() {
     4  	c := make(chan string)
     5  	select {
     6  	case <-c:
     7  		println("unexpected")
     8  	default:
     9  		println("nothing received")
    10  	}
    11  	println("bye")
    12  }
    13  
    14  // Output:
    15  // nothing received
    16  // bye