summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug187.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug187.go')
-rw-r--r--test/fixedbugs/bug187.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/fixedbugs/bug187.go b/test/fixedbugs/bug187.go
index 12389e797..66aa5f024 100644
--- a/test/fixedbugs/bug187.go
+++ b/test/fixedbugs/bug187.go
@@ -12,7 +12,6 @@ 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));