Sign in
go
/
tools
/
4e080d1bcfc8e8d8ae00c52ade74ec37c6bf5741
/
.
/
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()
}