aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/fillstruct/fill_struct_anon.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/fillstruct/fill_struct_anon.go')
-rw-r--r--internal/lsp/testdata/fillstruct/fill_struct_anon.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/internal/lsp/testdata/fillstruct/fill_struct_anon.go b/internal/lsp/testdata/fillstruct/fill_struct_anon.go
deleted file mode 100644
index b5d2337fd..000000000
--- a/internal/lsp/testdata/fillstruct/fill_struct_anon.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package fillstruct
-
-type StructAnon struct {
- a struct{}
- b map[string]interface{}
- c map[string]struct {
- d int
- e bool
- }
-}
-
-func fill() {
- _ := StructAnon{} //@suggestedfix("}", "refactor.rewrite")
-}