summaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue4847.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue4847.go')
-rw-r--r--test/fixedbugs/issue4847.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/issue4847.go b/test/fixedbugs/issue4847.go
index a99e80129..91a6568f2 100644
--- a/test/fixedbugs/issue4847.go
+++ b/test/fixedbugs/issue4847.go
@@ -19,6 +19,6 @@ func matchList(s *S) E { return matcher(matchAnyFn)(s) }
var foo = matcher(matchList)
-var matchAny = matcher(matchList) // ERROR "initialization loop"
+var matchAny = matcher(matchList) // ERROR "initialization loop|depends upon itself"
func matchAnyFn(s *S) (err E) { return matchAny(s) }