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 / CheckUnreadVariableValues / CheckUnreadVariableValues_test.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/CheckUnreadVariableValues/CheckUnreadVariableValues_test.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/staticcheck/testdata/src/CheckUnreadVariableValues/CheckUnreadVariableValues_test.go
deleted file mode 100644 (file)
index 9884718..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-package pkg
-
-import "testing"
-
-func TestFoo(t *testing.T) {
-       x := fn() // want `never used`
-       x = fn()
-       println(x)
-}
-
-func ExampleFoo() {
-       x := fn()
-       x = fn()
-       println(x)
-}