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