Files
llgo/compiler/cl/_testgo/strucintf/in.go
2025-01-09 00:47:45 +08:00

28 lines
448 B
Go

package main
import "github.com/goplus/llgo/compiler/cl/_testdata/foo"
func Foo() any {
return struct{ v int }{1}
}
func main() {
v := Foo()
if x, ok := v.(struct{ v int }); ok {
println(x.v)
} else {
println("Foo: not ok")
}
bar := foo.Bar()
if x, ok := bar.(struct{ V int }); ok {
println(x.V)
} else {
println("Bar: not ok")
}
if x, ok := foo.F().(struct{ v int }); ok {
println(x.v)
} else {
println("F: not ok")
}
}