some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / fillstruct / a4.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/internal/lsp/testdata/fillstruct/a4.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/internal/lsp/testdata/fillstruct/a4.go
deleted file mode 100644 (file)
index 7833d33..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-package fillstruct
-
-import "go/ast"
-
-type iStruct struct {
-       X int
-}
-
-type sStruct struct {
-       str string
-}
-
-type multiFill struct {
-       num   int
-       strin string
-       arr   []int
-}
-
-type assignStruct struct {
-       n ast.Node
-}
-
-func fill() {
-       var x int
-       var _ = iStruct{} //@suggestedfix("}", "refactor.rewrite")
-
-       var s string
-       var _ = sStruct{} //@suggestedfix("}", "refactor.rewrite")
-
-       var n int
-       _ = []int{}
-       if true {
-               arr := []int{1, 2}
-       }
-       var _ = multiFill{} //@suggestedfix("}", "refactor.rewrite")
-
-       var node *ast.CompositeLit
-       var _ = assignStruct{} //@suggestedfix("}", "refactor.rewrite")
-}