summaryrefslogtreecommitdiff
path: root/test/235.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-03-03 08:39:12 -0800
committerRuss Cox <rsc@golang.org>2009-03-03 08:39:12 -0800
commit518ebed3d37d9e2ca3092b9fef3e8b7f338dff8e (patch)
tree028f4f1a5f6b78795c1a1ef840b49c7da342edd1 /test/235.go
parentdab379ca0d53983fc0aa6184a8faf409fa0aa297 (diff)
downloadgo-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/235.go')
-rw-r--r--test/235.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/235.go b/test/235.go
index 26ed16ff2..e24106dd0 100644
--- a/test/235.go
+++ b/test/235.go
@@ -32,16 +32,16 @@ func min(xs []uint64) uint64 {
func main() {
- F := []uint64(2, 3, 5);
+ F := []uint64{2, 3, 5};
var n = len(F);
- OUT := []uint64(
+ OUT := []uint64{
2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 25, 27, 30, 32, 36,
40, 45, 48, 50, 54, 60, 64, 72, 75, 80, 81, 90, 96, 100, 108, 120, 125,
128, 135, 144, 150, 160, 162, 180, 192, 200, 216, 225, 240, 243, 250,
256, 270, 288, 300, 320, 324, 360, 375, 384, 400, 405, 432, 450, 480,
486, 500, 512, 540, 576, 600, 625, 640, 648, 675, 720, 729, 750, 768,
800, 810, 864, 900, 960, 972, 1000, 1024, 1080, 1125, 1152, 1200, 1215,
- 1250, 1280, 1296, 1350, 1440, 1458, 1500, 1536, 1600 );
+ 1250, 1280, 1296, 1350, 1440, 1458, 1500, 1536, 1600 };
x := uint64(1);
ins := make([]T, n);