.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.0 / 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.1.0/internal/lsp/testdata/fillstruct/fill_struct_anon.go.golden b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/internal/lsp/testdata/fillstruct/fill_struct_anon.go.golden
new file mode 100644 (file)
index 0000000..eb6ffd6
--- /dev/null
@@ -0,0 +1,20 @@
+-- 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")
+}
+