diff options
author | Rob Pike <r@golang.org> | 2008-10-06 16:27:14 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2008-10-06 16:27:14 -0700 |
commit | 3d805b91f2806b9bc4fe4e55dc74179813ca11e6 (patch) | |
tree | f8b9a52280829d8a3c650337c9c28e1429db4409 | |
parent | 1d0574538ac721f378f747626566366ba8afe46c (diff) | |
download | golang-3d805b91f2806b9bc4fe4e55dc74179813ca11e6.tar.gz |
change in spec results in non-error
R=gri
DELTA=4 (0 added, 3 deleted, 1 changed)
OCL=16565
CL=16579
-rw-r--r-- | test/func3.go | 2 | ||||
-rw-r--r-- | test/golden.out | 3 |
2 files changed, 1 insertions, 4 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. diff --git a/test/golden.out b/test/golden.out index b83de865d..2676fec63 100644 --- a/test/golden.out +++ b/test/golden.out @@ -1,7 +1,4 @@ -=========== ./func3.go -BUG: errchk: func3.go: missing expected error message on line 14: 'type' - =========== ./helloworld.go hello, world |