summaryrefslogtreecommitdiff
path: root/test/initcomma.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-10-14 17:10:39 -0700
committerRuss Cox <rsc@golang.org>2008-10-14 17:10:39 -0700
commitffeb8292081c98b5ba3f89bfcd1fb84bb5bc1383 (patch)
treeccf5b1f14e39cd871d59aa806981b3760fac5311 /test/initcomma.go
parenta800a1e97ea913d585e61804b97729f0597649c3 (diff)
downloadgo-ffeb8292081c98b5ba3f89bfcd1fb84bb5bc1383.tar.gz
allow trailing comma in braced initialized list
R=ken OCL=17141 CL=17143
Diffstat (limited to 'test/initcomma.go')
-rw-r--r--test/initcomma.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/initcomma.go b/test/initcomma.go
new file mode 100644
index 000000000..d4bff2a88
--- /dev/null
+++ b/test/initcomma.go
@@ -0,0 +1,17 @@
+// $G $F.go && $L $F.$A && ./$A.out
+
+// Copyright 2009 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package main
+
+var a = []int { 1, 2, }
+var b = [5]int { }
+var c = []int { 1 }
+
+func main() {
+ if len(a) != 2 { panicln("len a", len(a)) }
+ if len(b) != 5 { panicln("len b", len(b)) }
+ if len(c) != 1 { panicln("len a", len(a)) }
+}