Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / rename / crosspkg / another / another.go.golden
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