github.com/jhump/golang-x-tools@v0.0.0-20220218190644-4958d6d39439/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  }