Go testsuite: update bugs for recent change

This matches changes in 788d204885.
This commit is contained in:
Ian Lance Taylor 2020-12-15 13:12:17 -08:00
parent 5aba026671
commit 34c7d3d3b2
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ type I4 interface { // GC_ERROR "invalid recursive type I4\n\tLINE: I4 refers to
}
type I5 interface { // GC_ERROR "invalid recursive type I5\n\tLINE: I5 refers to\n\tLINE+4: I6 refers to\n\tLINE: I5$"
I6 // GCCGO_ERROR "interface"
I6
}
type I6 interface {

View file

@ -8,7 +8,7 @@ package main
type I1 interface { // GC_ERROR "invalid recursive type"
m() I2
I2 // GCCGO_ERROR "loop|interface"
I2
}
type I2 interface {