Sign in
go
/
tools
/
89a9cb6e071805947b22339a5b620a34a36845c3
/
.
/
internal
/
lsp
/
testdata
/
rename
/
crosspkg
/
another
/
another.go
blob: 9b50af2cb9c493f0a2f7570e8910e8759e486af8 [
file
] [
log
] [
blame
]
package another
type (
I interface{ F() }
C struct{ I }
)
func (C) g()
func _() {
var x I = C{}
x.F()
//@rename("F", "G")
}