Sign in
go
/
tools
/
b0dc4aefbf2ea447be555074f0bec76ccade8e2d
/
.
/
gopls
/
internal
/
test
/
marker
/
testdata
/
implementation
/
issue70418.txt
blob: 62c070bc49a9c013a83e15fd37565006b930ab92 [
file
]
This test case reproduced a panic due to a bug in objectpath
on recursive interfaces (#70418).
-- go.mod --
module example.com
go 1.18
-- p/p.go --
package p
type Anon = interface{ F() } //@implementation("F")
type I interface {
A(Anon)
Z()
Anon
}