diff options
author | Russ Cox <rsc@golang.org> | 2009-03-03 08:39:12 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-03-03 08:39:12 -0800 |
commit | 518ebed3d37d9e2ca3092b9fef3e8b7f338dff8e (patch) | |
tree | 028f4f1a5f6b78795c1a1ef840b49c7da342edd1 /test/bigalg.go | |
parent | dab379ca0d53983fc0aa6184a8faf409fa0aa297 (diff) | |
download | go-518ebed3d37d9e2ca3092b9fef3e8b7f338dff8e.tar.gz |
Automated g4 rollback of changelist 25024,
plus significant hand editing.
Back to T{x} for composite literals.
R=r
OCL=25612
CL=25632
Diffstat (limited to 'test/bigalg.go')
-rw-r--r-- | test/bigalg.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bigalg.go b/test/bigalg.go index 5ac60cc0c..afeccdf8f 100644 --- a/test/bigalg.go +++ b/test/bigalg.go @@ -18,7 +18,7 @@ type T struct { d byte; } -var a = []int( 1, 2, 3 ) +var a = []int{ 1, 2, 3 } var NIL []int; func arraycmptest() { @@ -44,7 +44,7 @@ func SameArray(a, b []int) bool { return true; } -var t = T(1.5, 123, "hello", 255) +var t = T{1.5, 123, "hello", 255} var mt = make(map[int]T) var ma = make(map[int][]int) |