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 / extract / extract_function / extract_return_func_lit.go.golden
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/testdata/extract/extract_function/extract_return_func_lit.go.golden b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/testdata/extract/extract_function/extract_return_func_lit.go.golden
deleted file mode 100644 (file)
index 6c4fe96..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
--- functionextraction_extract_return_func_lit_7_3 --
-package extract
-
-import "go/ast"
-
-func _() {
-       ast.Inspect(ast.NewIdent("a"), func(n ast.Node) bool {
-               cond0, ret0 := fn0(n)
-               if cond0 {
-                       return ret0
-               } //@mark(exEn4, "}")
-               return false
-       })
-       //@extractfunc(exSt4, exEn4)
-}
-
-func fn0(n ast.Node) (bool, bool) {
-       if n == nil {
-               return true, true
-       }
-       return false, false
-}
-