github.com/april1989/origin-go-tools@v0.0.32/cmd/guru/testdata/src/main/multi.go (about)

     1  package main
     2  
     3  func g(x int) {
     4  }
     5  
     6  func f() {
     7  	x := 1
     8  	g(x) // "g(x)" is the selection for multiple queries
     9  }
    10  
    11  func main() {
    12  	f()
    13  }