Sign in
go
/
go.git
/
bc1d71ff64b01ac912cb0fa28c0f6dd5904fcd56
/
.
/
test
/
fixedbugs
/
issue4326.dir
/
q1.go
blob: f118eb09252a48c51942b1f602d637620afd1a12 [
file
]
package q1
func Deref(typ interface{}) interface{} {
if typ, ok := typ.(*int); ok {
return *typ
}
return typ
}