golang.org/x/tools@v0.21.1-0.20240520172518-788d39e776b1/go/callgraph/vta/testdata/src/d/d.go (about) 1 package d 2 3 func D(i int) int { 4 return i + 1 5 } 6 7 type Data struct { 8 V int 9 } 10 11 func (d Data) Do() int { 12 return d.V - 1 13 }