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.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fixedbugs/issue23823.go b/test/fixedbugs/issue23823.go
index fe6cef1fb4..c440c96315 100644
--- a/test/fixedbugs/issue23823.go
+++ b/test/fixedbugs/issue23823.go
@@ -7,10 +7,10 @@
package p
type I1 = interface {
- I2
+ I2 // GCCGO_ERROR "invalid recursive interface"
}
// 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
+type I2 interface { // GC_ERROR "invalid recursive type I2\n\tLINE: I2 refers to\n\tLINE: I2$"
+ I1 // GCCGO_ERROR "invalid recursive interface"
}