aboutsummaryrefslogtreecommitdiff
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
commitd47d888ba663014e6aa8ca043e694f4b2a5898b8 (patch)
tree851fad01a87b8fa071ed46fa0985f1857d9e47ca /test/func2.go
parent9786f69f74a5fa290476774e07fb10ce8da84123 (diff)
downloadgo-d47d888ba663014e6aa8ca043e694f4b2a5898b8.tar.gz
go-d47d888ba663014e6aa8ca043e694f4b2a5898b8.zip
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 2db67ddf49..e8e6842e00 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;