Fix type propagation in calls returning multiple values
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
package main
|
||||
|
||||
func r2() (int, int) { return 1, 2 }
|
||||
|
||||
func main() {
|
||||
a, b := r2()
|
||||
println(a, b)
|
||||
}
|
||||
|
||||
func r2() (int, int) { return 1, 2 }
|
||||
|
||||
// Output:
|
||||
// 1 2
|
||||
|
||||
Reference in New Issue
Block a user