.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / 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() {} // used
10
11 //go:linkname bar other2
12 var bar int // used
13
14 var (
15         baz int // unused
16         //go:linkname qux other3
17         qux int // used
18 )
19
20 //go:linkname fisk other3
21 var (
22         fisk int // used
23 )
24
25 var ol int // used
26
27 //go:linkname doesnotexist other5