aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/rename/crosspkg/other/other.go
diff options
context:
space:
mode:
Diffstat (limited to 'gopls/internal/lsp/testdata/rename/crosspkg/other/other.go')
-rw-r--r--gopls/internal/lsp/testdata/rename/crosspkg/other/other.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/gopls/internal/lsp/testdata/rename/crosspkg/other/other.go b/gopls/internal/lsp/testdata/rename/crosspkg/other/other.go
new file mode 100644
index 000000000..5fd147da6
--- /dev/null
+++ b/gopls/internal/lsp/testdata/rename/crosspkg/other/other.go
@@ -0,0 +1,8 @@
+package other
+
+import "golang.org/lsptests/rename/crosspkg"
+
+func Other() {
+ crosspkg.Bar
+ crosspkg.Foo() //@rename("Foo", "Flamingo")
+}