summaryrefslogtreecommitdiff
path: root/test/func2.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-12-18 22:37:22 -0800
committerRuss Cox <rsc@golang.org>2008-12-18 22:37:22 -0800
commit803b4ce450fdc923110e0526fbc3aeb2ad07cc63 (patch)
tree851fad01a87b8fa071ed46fa0985f1857d9e47ca /test/func2.go
parentf4b61f0294171954ffe0c1ef4b9cdb2fb2bb7e22 (diff)
downloadgo-803b4ce450fdc923110e0526fbc3aeb2ad07cc63.tar.gz
convert *[] to [].
R=r OCL=21563 CL=21571
Diffstat (limited to 'test/func2.go')
-rw-r--r--test/func2.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/func2.go b/test/func2.go
index 2db67ddf4..e8e6842e0 100644
--- a/test/func2.go
+++ b/test/func2.go
@@ -15,7 +15,7 @@ func f1(t1, t2, t3);
func f2(t1, t2, t3 bool);
func f3(t1, t2, x t3);
func f4(t1, *t3);
-func (x *t1) f5(y *[]t2) (t1, *t3);
+func (x *t1) f5(y []t2) (t1, *t3);
func f6() (int, *string);
func f7(*t2, t3);
func f8(os int) int;