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/bug098.go b/test/fixedbugs/bug098.go
index 09daf3f..8e790a7 100644
--- a/test/fixedbugs/bug098.go
+++ b/test/fixedbugs/bug098.go
@@ -10,8 +10,8 @@
type M map[int] int;
func main() {
- var a *A = &A(0);
- var m *M = &M(0 : 0); // should be legal to use & here for consistency with other composite constructors (prev. line)
+ var a *A = &A{0};
+ var m *M = &M{0 : 0}; // should be legal to use & here for consistency with other composite constructors (prev. line)
}
/*