go/internal/lsp/testdata/references/other/other.go

20 lines
352 B
Go

package other
import (
references "golang.org/x/tools/internal/lsp/references"
)
func GetXes() []references.X {
return []references.X{
{
Y: 1, //@mark(GetXesY, "Y"),refs("Y", typeXY, GetXesY, anotherXY)
},
}
}
func _() {
references.Q = "hello" //@mark(assignExpQ, "Q")
bob := func(_ string) {}
bob(references.Q) //@mark(bobExpQ, "Q")
}