Files
go-legacy-win7/test/fixedbugs/issue4326.dir/q1.go
2024-09-21 23:49:08 +10:00

9 lines
142 B
Go

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