Sign in
go
/
tools
/
ebfa4efbc4757eb4dca06f30f67e33c2f5bfa28d
/
.
/
oracle
/
testdata
/
src
/
main
/
multi.go
blob: 54caf15d7966d86ffee4cc326584c8b651be585e [
file
] [
log
] [
blame
]
package multi
func g(x int) {
}
func f() {
x := 1
g(x)
// "g(x)" is the selection for multiple queries
}
func main() {
f()
}