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/bug102.go b/test/fixedbugs/bug102.go
index 87ec65e..5848097 100644
--- a/test/fixedbugs/bug102.go
+++ b/test/fixedbugs/bug102.go
@@ -12,7 +12,7 @@
 	if s != "" {
 		panic("bad convert")
 	}
-	var b1 = [5]byte('h', 'e', 'l', 'l', 'o');
+	var b1 = [5]byte{'h', 'e', 'l', 'l', 'o'};
 	if string(b1) != "hello" {
 		panic("bad convert 1")
 	}