github.com/epfl-dcsl/gotee@v0.0.0-20200909122901-014b35f5e5e9/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  }