gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_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