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()
}