Files
go-legacy-win7/test/fixedbugs/issue4326.dir/q1.go

9 lines
142 B
Go
Raw Normal View History

2024-09-21 23:49:08 +10:00
package q1
func Deref(typ interface{}) interface{} {
if typ, ok := typ.(*int); ok {
return *typ
}
return typ
}