summaryrefslogtreecommitdiff
path: root/test/ken/ptrfun.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/ken/ptrfun.go')
-rw-r--r--test/ken/ptrfun.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ken/ptrfun.go b/test/ken/ptrfun.go
index bfec64ff9..e7db3a94d 100644
--- a/test/ken/ptrfun.go
+++ b/test/ken/ptrfun.go
@@ -10,7 +10,7 @@ package main
type C struct
{
a int;
- x *func(p *C)int;
+ x *(p *C)int;
}
func g(p *C)int;