TypeAssert bugfix; testcase struczero

This commit is contained in:
xushiwei
2024-05-25 07:43:24 +08:00
parent 40dd25c122
commit 1226308f3d
4 changed files with 53 additions and 107 deletions

View File

@@ -12,6 +12,5 @@ func Foo(v any) (ret bar, ok bool) {
func main() {
ret, ok := Foo(nil)
println("Hi")
println(ret.pb, ret.f, ok)
}