summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug406.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug406.go')
-rw-r--r--test/fixedbugs/bug406.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/fixedbugs/bug406.go b/test/fixedbugs/bug406.go
index c6f8534c9..6df3c5cae 100644
--- a/test/fixedbugs/bug406.go
+++ b/test/fixedbugs/bug406.go
@@ -14,6 +14,8 @@ type matrix struct {
func (a matrix) equal() bool {
for _ = range a.e {
}
+ for range a.e {
+ }
return true
}