diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/convert.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/convert.go b/test/convert.go index 11369e521..4952e01b7 100644 --- a/test/convert.go +++ b/test/convert.go @@ -9,7 +9,7 @@ package main import "unsafe" func typeof(x interface{}) string { - val, typ, indir := sys.Reflect(x); + val, typ, indir := unsafe.Reflect(x); return typ; } |