github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/tools/oracle/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  }