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