Sign in
go
/
vgo
/
949a6b32ca558316b94dacf727cac9e55ccae3f0
/
.
/
vendor
/
cmd
/
go
/
testdata
/
src
/
vetcycle
/
p.go
blob: 5b058e7806e97c0d6ffc7beffa736cb1b9aaa112 [
file
] [
log
] [
blame
]
package p
type (
_ interface{ m(B1) }
A1 interface{ a(D1) }
B1 interface{ A1 }
C1 interface {
B1
/* ERROR issue #18395 */
}
D1 interface{ C1 }
)
var _ A1 = C1
/* ERROR cannot use C1 */
(nil)