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