diff options
Diffstat (limited to 'usr/r/reflect/main.go')
-rw-r--r-- | usr/r/reflect/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/r/reflect/main.go b/usr/r/reflect/main.go index f46b6d81e..0348cef9f 100644 --- a/usr/r/reflect/main.go +++ b/usr/r/reflect/main.go @@ -39,6 +39,6 @@ func main() { t = reflect.ParseTypeString("*(a int8, b int32)"); s = reflect.ToString(t); print(s, "\n"); - t = reflect.ParseTypeString("struct {c *(? *chan *int32, ? *int8)}"); + t = reflect.ParseTypeString("struct {c *(? *chan *P.integer, ? *int8)}"); s = reflect.ToString(t); print(s, "\n"); } |