Sign in
go
/
tools
/
41f4ee4e59bf2caa8994b0b05b9af183daf6c7cc
/
.
/
oracle
/
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()
}