blob: daac1a0282b400d4504188eca8550374abe0fa68 [file] [log] [blame]
package other
import (
references "golang.org/lsptests/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")
}