commit | be2edb57614dd5a92294b7d29a34de754998fde5 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Tue Mar 03 08:39:12 2009 -0800 |
committer | Russ Cox <rsc@golang.org> | Tue Mar 03 08:39:12 2009 -0800 |
tree | 028f4f1a5f6b78795c1a1ef840b49c7da342edd1 | |
parent | e8b43190bbec4b3b445739c216a0f4e023a9442f [diff] [blame] |
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}; } /*