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 / extract / extract_function / extract_args_returns.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/extract/extract_function/extract_args_returns.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/internal/lsp/testdata/extract/extract_function/extract_args_returns.go
deleted file mode 100644 (file)
index 63d24df..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-package extract
-
-func _() {
-       a := 1
-       a = 5     //@mark(exSt0, "a")
-       a = a + 2 //@mark(exEn0, "2")
-       //@extractfunc(exSt0, exEn0)
-       b := a * 2 //@mark(exB, "       b")
-       _ = 3 + 4  //@mark(exEnd, "4")
-       //@extractfunc(exB, exEnd)
-}