Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / staticcheck / testdata / src / CheckDeprecated / CheckDeprecated.go
1 package pkg
2
3 import _ "CheckDeprecatedassist"          // want `Alas, it is deprecated\.`
4 import _ "AnotherCheckDeprecatedassist"   // want `Alas, it is deprecated\.`
5 import foo "AnotherCheckDeprecatedassist" // want `Alas, it is deprecated\.`
6 import "AnotherCheckDeprecatedassist"     // want `Alas, it is deprecated\.`
7
8 func init() {
9         foo.Fn()
10         AnotherCheckDeprecatedassist.Fn()
11 }