github.com/v2fly/tools@v0.100.0/internal/lsp/testdata/rename/crosspkg/another/another.go.golden (about) 1 -- G-rename -- 2 package another 3 4 type ( 5 I interface{ G() } 6 C struct{ I } 7 ) 8 9 func (C) g() 10 11 func _() { 12 var x I = C{} 13 x.G() //@rename("F", "G") 14 } 15