modernc.org/gc@v1.0.1-0.20240304020402-f0dba7c97c2b/testdata/errchk/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 }