mirror of
https://github.com/golang/go
synced 2024-11-13 14:50:21 -07:00
777a77b4d2
Fixes bug I introduced in CL 21202. Fixes #15013. Change-Id: I2344d7e22b8273425a0a56f4a77588b5c6e4d8c6 Reviewed-on: https://go-review.googlesource.com/21270 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
25 lines
560 B
Go
25 lines
560 B
Go
// compile
|
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// CL 21202 introduced a compiler crash in the handling of a varargs
|
|
// function in the same recursive group as a function that calls it.
|
|
// Nothing in the standard library caught the problem, so adding a test.
|
|
|
|
package p
|
|
|
|
func F1(p *int, a ...*int) (int, *int) {
|
|
if p == nil {
|
|
return F2(), a[0]
|
|
}
|
|
return 0, a[0]
|
|
}
|
|
|
|
func F2() int {
|
|
var i0, i1 int
|
|
a, _ := F1(&i0, &i1)
|
|
return a
|
|
}
|