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 / unused / testdata / src / linkname / linkname.go
1 package pkg
2
3 import _ "unsafe"
4
5 //other:directive
6 //go:linkname ol other4
7
8 //go:linkname foo other1
9 func foo() {}
10
11 //go:linkname bar other2
12 var bar int
13
14 var (
15         baz int // want `baz`
16         //go:linkname qux other3
17         qux int
18 )
19
20 //go:linkname fisk other3
21 var (
22         fisk int
23 )
24
25 var ol int
26
27 //go:linkname doesnotexist other5