Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / references / other / other.go
1 package other
2
3 import (
4         references "golang.org/x/tools/internal/lsp/references"
5 )
6
7 func GetXes() []references.X {
8         return []references.X{
9                 {
10                         Y: 1, //@mark(GetXesY, "Y"),refs("Y", typeXY, GetXesY, anotherXY)
11                 },
12         }
13 }
14
15 func _() {
16         references.Q = "hello" //@mark(assignExpQ, "Q")
17         bob := func(_ string) {}
18         bob(references.Q) //@mark(bobExpQ, "Q")
19 }