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