.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
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 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
new file mode 100644 (file)
index 0000000..b5d2337
--- /dev/null
@@ -0,0 +1,14 @@
+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")
+}