# support function returning multiple vars as args to another func
godebugtester run main.go
contains stdout "=> f1((1, 2)=(f2()))"

-- main.go --
package main
func main() {
	_=f1(f2())
}
func f1(a,b int)int{
	return a+b
}
func f2() (int,int){
	return 1,2
}

