summaryrefslogtreecommitdiff
path: root/test/func3.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/func3.go')
-rw-r--r--test/func3.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/func3.go b/test/func3.go
index 907734626..33e80a716 100644
--- a/test/func3.go
+++ b/test/func3.go
@@ -14,4 +14,4 @@ func f1(*t2, x t3); // ERROR "named"
func f2(t1, *t2, x t3); // ERROR "named"
func f3() (x int, *string); // ERROR "named"
-func f4() (t1 t1); // ERROR "type"
+func f4() (t1 t1); // legal - scope of parameter named t1 starts in body of f4.