.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.0 / internal / lsp / testdata / rename / crosspkg / another / another.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/internal/lsp/testdata/rename/crosspkg/another/another.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/internal/lsp/testdata/rename/crosspkg/another/another.go
new file mode 100644 (file)
index 0000000..9b50af2
--- /dev/null
@@ -0,0 +1,13 @@
+package another
+
+type (
+       I interface{ F() }
+       C struct{ I }
+)
+
+func (C) g()
+
+func _() {
+       var x I = C{}
+       x.F() //@rename("F", "G")
+}