aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/testy/testy_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/testy/testy_test.go')
-rw-r--r--internal/lsp/testdata/testy/testy_test.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/internal/lsp/testdata/testy/testy_test.go b/internal/lsp/testdata/testy/testy_test.go
deleted file mode 100644
index 4939f86b5..000000000
--- a/internal/lsp/testdata/testy/testy_test.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package testy
-
-import (
- "testing"
-
- sig "golang.org/x/tools/internal/lsp/signature"
- "golang.org/x/tools/internal/lsp/snippets"
-)
-
-func TestSomething(t *testing.T) { //@item(TestSomething, "TestSomething(t *testing.T)", "", "func")
- var x int //@mark(testyX, "x"),diag("x", "compiler", "x declared but not used", "error"),refs("x", testyX)
- a() //@mark(testyA, "a")
-}
-
-func _() {
- _ = snippets.X(nil) //@signature("nil", "X(_ map[sig.Alias]types.CoolAlias) map[sig.Alias]types.CoolAlias", 0)
- var _ sig.Alias
-}