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