github.com/brownsys/tracing-framework-go@v0.0.0-20161210174012-0542a62412fe/go/darwin_amd64/test/fixedbugs/issue4326.dir/q1.go (about) 1 package q1 2 3 func Deref(typ interface{}) interface{} { 4 if typ, ok := typ.(*int); ok { 5 return *typ 6 } 7 return typ 8 }