blob: fcd5685f9036a8eeb8cdd0f575468cb81d6136d3 [file] [log] [blame]
// build +OMIT
package main
import "fmt"
func main() {
var i interface{} = "hello"
s := i.(string)
fmt.Println(s)
s, ok := i.(string)
fmt.Println(s, ok)
f, ok := i.(float64)
fmt.Println(f, ok)
f = i.(float64) // panic
fmt.Println(f)
}