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 {