DEBSOURCES
Skip Quicknav
sources / golang-1.8 / 1.8.1-1%2Bdeb9u1 / test / fixedbugs / issue4326.dir / q1.go
12345678
package q1 func Deref(typ interface{}) interface{} { if typ, ok := typ.(*int); ok { return *typ } return typ }