Sign in
go
/
tools
/
e0659d1f36ace71fc67398f8dcee3ff4811ca633
/
.
/
cmd
/
guru
/
testdata
/
src
/
main
/
multi.go
blob: 8c650cd28943b697ca3587408484776d3c7eb414 [
file
]
package main
func g(x int) {
}
func f() {
x := 1
g(x)
// "g(x)" is the selection for multiple queries
}
func main() {
f()
}