Giant blob of minor changes
[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_args_returns.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/extract/extract_function/extract_args_returns.go 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_args_returns.go
new file mode 100644 (file)
index 0000000..63d24df
--- /dev/null
@@ -0,0 +1,11 @@
+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)
+}