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 / CheckMathInt / CheckMathInt.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/CheckMathInt/CheckMathInt.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/staticcheck/testdata/src/CheckMathInt/CheckMathInt.go
deleted file mode 100644 (file)
index d413e85..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-package pkg
-
-import "math"
-
-func fn(x int) {
-       math.Ceil(float64(x))      // want `on a converted integer is pointless`
-       math.Floor(float64(x * 2)) // want `on a converted integer is pointless`
-}