1 2 3 4 5 6 7 8
package q1 func Deref(typ interface{}) interface{} { if typ, ok := typ.(*int); ok { return *typ } return typ }