aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/references/other/other.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/references/other/other.go')
-rw-r--r--internal/lsp/testdata/references/other/other.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/internal/lsp/testdata/references/other/other.go b/internal/lsp/testdata/references/other/other.go
deleted file mode 100644
index de35cc81a..000000000
--- a/internal/lsp/testdata/references/other/other.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package other
-
-import (
- references "golang.org/x/tools/internal/lsp/references"
-)
-
-func GetXes() []references.X {
- return []references.X{
- {
- Y: 1, //@mark(GetXesY, "Y"),refs("Y", typeXY, GetXesY, anotherXY)
- },
- }
-}
-
-func _() {
- references.Q = "hello" //@mark(assignExpQ, "Q")
- bob := func(_ string) {}
- bob(references.Q) //@mark(bobExpQ, "Q")
-}