Automated g4 rollback of changelist 25024,
plus significant hand editing.

Back to T{x} for composite literals.

R=r
OCL=25612
CL=25632
diff --git a/test/fixedbugs/bug096.go b/test/fixedbugs/bug096.go
index 34673f7..81d6c4a 100644
--- a/test/fixedbugs/bug096.go
+++ b/test/fixedbugs/bug096.go
@@ -9,8 +9,8 @@
 type A []int;
 
 func main() {
-	a := &A(0);
-	b := &A(0, 1);
+	a := &A{0};
+	b := &A{0, 1};
 }
 
 /*