aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/nested_complit/nested_complit.go.in
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/nested_complit/nested_complit.go.in')
-rw-r--r--internal/lsp/testdata/nested_complit/nested_complit.go.in14
1 files changed, 0 insertions, 14 deletions
diff --git a/internal/lsp/testdata/nested_complit/nested_complit.go.in b/internal/lsp/testdata/nested_complit/nested_complit.go.in
deleted file mode 100644
index 1dddd5b1b..000000000
--- a/internal/lsp/testdata/nested_complit/nested_complit.go.in
+++ /dev/null
@@ -1,14 +0,0 @@
-package nested_complit
-
-type ncFoo struct {} //@item(structNCFoo, "ncFoo", "struct{...}", "struct")
-
-type ncBar struct { //@item(structNCBar, "ncBar", "struct{...}", "struct")
- baz []ncFoo
-}
-
-func _() {
- []ncFoo{} //@item(litNCFoo, "[]ncFoo{}", "", "var")
- _ := ncBar{
- baz: [] //@complete(" //", structNCFoo, structNCBar)
- }
-}