android_mt6572_jiabo/prebuilts/go/linux-x86/test/fixedbugs/issue4326.dir/q1.go
2025-09-05 16:56:03 +08:00

8 lines
142 B
Go

package q1
func Deref(typ interface{}) interface{} {
if typ, ok := typ.(*int); ok {
return *typ
}
return typ
}