22 lines
375 B
Go
22 lines
375 B
Go
package b
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"golang.org/x/tools/internal/lsp/godef/a"
|
|
)
|
|
|
|
func useThings() {
|
|
t := a.Thing{} //@mark(bStructType, "ing")
|
|
fmt.Print(t.Member) //@mark(bMember, "ember")
|
|
fmt.Print(a.Other) //@mark(bVar, "ther")
|
|
a.Things() //@mark(bFunc, "ings")
|
|
}
|
|
|
|
/*@
|
|
godef(bStructType, Thing)
|
|
godef(bMember, Member)
|
|
godef(bVar, Other)
|
|
godef(bFunc, Things)
|
|
*/
|