mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
12 lines
106 B
Go
12 lines
106 B
Go
package main
|
|
|
|
func main() {
|
|
var a interface{}
|
|
switch a.(type) {
|
|
}
|
|
println("bye")
|
|
}
|
|
|
|
// Output:
|
|
// bye
|