aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue23823.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue23823.go')
-rw-r--r--test/fixedbugs/issue23823.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fixedbugs/issue23823.go b/test/fixedbugs/issue23823.go
index 2f802d0988..fe6cef1fb4 100644
--- a/test/fixedbugs/issue23823.go
+++ b/test/fixedbugs/issue23823.go
@@ -10,6 +10,7 @@ type I1 = interface {
I2
}
-type I2 interface { // ERROR "invalid recursive type"
+// BAD: type loop should mention I1; see also #41669
+type I2 interface { // ERROR "invalid recursive type I2\n\tLINE: I2 refers to\n\tLINE: I2$"
I1
}