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