commit | d47d888ba663014e6aa8ca043e694f4b2a5898b8 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Thu Dec 18 22:37:22 2008 -0800 |
committer | Russ Cox <rsc@golang.org> | Thu Dec 18 22:37:22 2008 -0800 |
tree | 851fad01a87b8fa071ed46fa0985f1857d9e47ca | |
parent | 9786f69f74a5fa290476774e07fb10ce8da84123 [diff] [blame] |
convert *[] to []. R=r OCL=21563 CL=21571
diff --git a/test/fixedbugs/bug054.go b/test/fixedbugs/bug054.go index a91773e..decf584 100644 --- a/test/fixedbugs/bug054.go +++ b/test/fixedbugs/bug054.go
@@ -10,7 +10,7 @@ } type Vector struct { - elem *[]Element; + elem []Element; } func (v *Vector) At(i int) Element {