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 / CheckLeakyTimeTick-main / CheckLeakyTimeTick-main.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/CheckLeakyTimeTick-main/CheckLeakyTimeTick-main.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/staticcheck/testdata/src/CheckLeakyTimeTick-main/CheckLeakyTimeTick-main.go
deleted file mode 100644 (file)
index bdae3ed..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-package main
-
-import "time"
-
-func fn2() {
-       for range time.Tick(0) {
-               println("")
-               if true {
-                       break
-               }
-       }
-}
-
-func main() {
-       _ = time.Tick(0)
-}