mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
a6f564c8e9
For #55242 Change-Id: I092b1881623ea997b178d038c0afd10cd5bca937 Reviewed-on: https://go-review.googlesource.com/c/go/+/479898 Reviewed-by: Than McIntosh <thanm@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
18 lines
346 B
Go
18 lines
346 B
Go
// compile
|
|
|
|
// Copyright 2023 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.
|
|
|
|
// Issue 55242: gofrontend crash calling function that returns
|
|
// trailing empty struct.
|
|
|
|
package p
|
|
|
|
func F1() (int, struct{}) {
|
|
return 0, struct{}{}
|
|
}
|
|
|
|
func F2() {
|
|
F1()
|
|
}
|