.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / analysis / facts / testdata / src / Deprecated / Deprecated.go
1 package pkg
2
3 // Deprecated: Don't use this.
4 func fn2() { // want fn2:`Deprecated: Don't use this\.`
5 }
6
7 // This is a function.
8 //
9 // Deprecated: Don't use this.
10 //
11 // Here is how you might use it instead.
12 func fn3() { // want fn3:`Deprecated: Don't use this\.`
13 }