some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / internal / lsp / testdata / fillstruct / fill_struct_anon.go.golden
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/testdata/fillstruct/fill_struct_anon.go.golden b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/testdata/fillstruct/fill_struct_anon.go.golden
deleted file mode 100644 (file)
index eb6ffd6..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
--- suggestedfix_fill_struct_anon_13_18 --
-package fillstruct
-
-type StructAnon struct {
-       a struct{}
-       b map[string]interface{}
-       c map[string]struct {
-               d int
-               e bool
-       }
-}
-
-func fill() {
-       _ := StructAnon{
-               a: struct{}{},
-               b: map[string]interface{}{},
-               c: map[string]struct{d int; e bool}{},
-       } //@suggestedfix("}", "refactor.rewrite")
-}
-