aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/rename/crosspkg/another/another.go
blob: 9b50af2cb9c493f0a2f7570e8910e8759e486af8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package another

type (
	I interface{ F() }
	C struct{ I }
)

func (C) g()

func _() {
	var x I = C{}
	x.F() //@rename("F", "G")
}