some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / stylecheck / testdata / src / CheckTimeNames / CheckTimeNames.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/stylecheck/testdata/src/CheckTimeNames/CheckTimeNames.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/stylecheck/testdata/src/CheckTimeNames/CheckTimeNames.go
deleted file mode 100644 (file)
index 4a8f054..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Package pkg ...
-package pkg
-
-import "time"
-
-type T1 struct {
-       aMS     int
-       B       time.Duration
-       BMillis time.Duration // want `don't use unit-specific suffix`
-}
-
-func fn1(a, b, cMS time.Duration) { // want `don't use unit-specific suffix`
-       var x time.Duration
-       var xMS time.Duration    // want `don't use unit-specific suffix`
-       var y, yMS time.Duration // want `don't use unit-specific suffix`
-       var zMS = time.Second    // want `don't use unit-specific suffix`
-       aMS := time.Second       // want `don't use unit-specific suffix`
-       unrelated, aMS := 0, 0
-       aMS, bMS := 0, time.Second // want `var bMS .+ don't use unit-specific suffix`
-
-       _, _, _, _, _, _, _, _ = x, xMS, y, yMS, zMS, aMS, unrelated, bMS
-}