.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_nested.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_nested.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_nested.go.golden
new file mode 100644 (file)
index 0000000..30061a5
--- /dev/null
@@ -0,0 +1,19 @@
+-- suggestedfix_fill_struct_nested_13_20 --
+package fillstruct
+
+type StructB struct {
+       StructC
+}
+
+type StructC struct {
+       unexportedInt int
+}
+
+func nested() {
+       c := StructB{
+               StructC: StructC{
+                       unexportedInt: 0,
+               }, //@suggestedfix("}", "refactor.rewrite")
+       }
+}
+