summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-09-03 16:17:06 -0700
committerRuss Cox <rsc@golang.org>2009-09-03 16:17:06 -0700
commit86efeab6687cffedafa31ff0e06ddc116d1df4e4 (patch)
tree4f43c4a47bdb4edc33cc13e327cd19e6711d6fe9
parentd15549ce988a694304dd5bb492ceff1ee70b1d04 (diff)
downloadgolang-86efeab6687cffedafa31ff0e06ddc116d1df4e4.tar.gz
corrected bug187; dropped on the floor somehow
R=austin DELTA=23 (23 added, 0 deleted, 0 changed) OCL=34340 CL=34346
-rw-r--r--test/fixedbugs/bug187.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/fixedbugs/bug187.go b/test/fixedbugs/bug187.go
new file mode 100644
index 000000000..12389e797
--- /dev/null
+++ b/test/fixedbugs/bug187.go
@@ -0,0 +1,23 @@
+// $G $D/$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
+
+import "os"
+
+func main() {
+ // This bug doesn't arise with [...]int, or []interface{} or [3]interface{}.
+ a := [...]interface{} { 1, 2, 3 };
+ n := 1;
+ bug := false;
+ for _, v := range a {
+ if v.(int) != n {
+ println("BUG:", n, v.(int));
+ os.Exit(0);
+ }
+ n++;
+ }
+}