some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / 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.0.0-20201028153306-37f0764111ff/internal/lsp/testdata/rename/crosspkg/another/another.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/testdata/rename/crosspkg/another/another.go
deleted file mode 100644 (file)
index 9b50af2..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-package another
-
-type (
-       I interface{ F() }
-       C struct{ I }
-)
-
-func (C) g()
-
-func _() {
-       var x I = C{}
-       x.F() //@rename("F", "G")
-}