some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / staticcheck / testdata / src / CheckStringsReplaceZero / CheckStringsReplaceZero.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/staticcheck/testdata/src/CheckStringsReplaceZero/CheckStringsReplaceZero.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/staticcheck/testdata/src/CheckStringsReplaceZero/CheckStringsReplaceZero.go
deleted file mode 100644 (file)
index 318c4cb..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-package pkg
-
-import "strings"
-
-func fn() {
-       _ = strings.Replace("", "", "", 0) // want `calling strings\.Replace with n == 0`
-       _ = strings.Replace("", "", "", -1)
-       _ = strings.Replace("", "", "", 1)
-}