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 / CheckContextFirstArg.disabled / CheckContextFirstArg.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/CheckContextFirstArg.disabled/CheckContextFirstArg.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/stylecheck/testdata/src/CheckContextFirstArg.disabled/CheckContextFirstArg.go
deleted file mode 100644 (file)
index a96ab60..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-// Package pkg ...
-package pkg
-
-import "context"
-
-type T int
-
-func fn1(int)                                   {}
-func fn2(context.Context, int)                  {}
-func fn3(context.Context, int, context.Context) {}
-func fn4(int, context.Context)                  {} // want `context\.Context should be the first argument of a function`
-func (T) FN(int, context.Context)               {} // want `context\.Context should be the first argument of a function`