mirror of
https://github.com/golang/go.git
synced 2025-05-05 23:53:05 +00:00
test: update for gofrontend error message changes
fixedbugs/bug195.go:9:20: error: interface contains embedded non-interface fixedbugs/bug195.go:12:20: error: interface contains embedded non-interface fixedbugs/bug195.go:15:22: error: interface contains embedded non-interface fixedbugs/bug195.go:18:9: error: invalid recursive interface fixedbugs/bug195.go:26:9: error: invalid recursive interface fixedbugs/bug251.go:15:9: error: invalid recursive interface fixedbugs/issue23823.go:15:9: error: invalid recursive interface Change-Id: If4c22430557459d5b361beda7168f8cb42b58811 Reviewed-on: https://go-review.googlesource.com/c/go/+/278512 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Than McIntosh <thanm@google.com> Reviewed-by: Cherry Zhang <cherryyz@google.com> TryBot-Result: Go Bot <gobot@golang.org>
This commit is contained in:
parent
129bb1917b
commit
731bb54038
@ -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$"
|
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 {
|
type I6 interface {
|
||||||
|
@ -8,7 +8,7 @@ package main
|
|||||||
|
|
||||||
type I1 interface { // GC_ERROR "invalid recursive type"
|
type I1 interface { // GC_ERROR "invalid recursive type"
|
||||||
m() I2
|
m() I2
|
||||||
I2 // GCCGO_ERROR "loop|interface"
|
I2
|
||||||
}
|
}
|
||||||
|
|
||||||
type I2 interface {
|
type I2 interface {
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
package p
|
package p
|
||||||
|
|
||||||
type I1 = interface {
|
type I1 = interface {
|
||||||
I2 // GCCGO_ERROR "invalid recursive interface"
|
I2
|
||||||
}
|
}
|
||||||
|
|
||||||
// BAD: type loop should mention I1; see also #41669
|
// BAD: type loop should mention I1; see also #41669
|
||||||
|
Loading…
x
Reference in New Issue
Block a user