github.com/v2fly/tools@v0.100.0/internal/lsp/testdata/references/another/another.go (about)

     1  // Package another has another type.
     2  package another
     3  
     4  import (
     5  	other "github.com/v2fly/tools/internal/lsp/references/other"
     6  )
     7  
     8  func _() {
     9  	xes := other.GetXes()
    10  	for _, x := range xes {
    11  		_ = x.Y //@mark(anotherXY, "Y"),refs("Y", typeXY, anotherXY, GetXesY)
    12  	}
    13  }