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 / CheckReceiverNames / CheckReceiverNames.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/CheckReceiverNames/CheckReceiverNames.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/stylecheck/testdata/src/CheckReceiverNames/CheckReceiverNames.go
deleted file mode 100644 (file)
index ead410c..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// Package pkg ...
-package pkg
-
-type T1 int
-
-func (x T1) Fn1()    {}
-func (y T1) Fn2()    {}
-func (x T1) Fn3()    {}
-func (T1) Fn4()      {}
-func (_ T1) Fn5()    {} // want `receiver name should not be an underscore, omit the name if it is unused`
-func (self T1) Fn6() {} // want `receiver name should be a reflection of its identity`