aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/unimported/unimported_cand_type.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/unimported/unimported_cand_type.go')
-rw-r--r--internal/lsp/testdata/unimported/unimported_cand_type.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/internal/lsp/testdata/unimported/unimported_cand_type.go b/internal/lsp/testdata/unimported/unimported_cand_type.go
deleted file mode 100644
index 531aa2d18..000000000
--- a/internal/lsp/testdata/unimported/unimported_cand_type.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package unimported
-
-import (
- _ "context"
-
- "golang.org/x/tools/internal/lsp/baz"
- _ "golang.org/x/tools/internal/lsp/signature" // provide type information for unimported completions in the other file
-)
-
-func _() {
- foo.StructFoo{} //@item(litFooStructFoo, "foo.StructFoo{}", "struct{...}", "struct")
-
- // We get the literal completion for "foo.StructFoo{}" even though we haven't
- // imported "foo" yet.
- baz.FooStruct = f //@snippet(" //", litFooStructFoo, "foo.StructFoo{$0\\}", "foo.StructFoo{$0\\}")
-}