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

     1  package main
     2  
     3  func main() {
     4  	var i interface{} = "truc"
     5  
     6  	switch i.(type) {
     7  	case string:
     8  		println("string")
     9  		fallthrough
    10  	default:
    11  		println("unknown")
    12  	}
    13  }
    14  
    15  // Error:
    16  // 9:3: cannot fallthrough in type switch