mirror of
https://github.com/golang/go.git
synced 2025-05-05 15:43:04 +00:00
test: add test that caused a gofrontend crash
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>
This commit is contained in:
parent
cd25a3a416
commit
a6f564c8e9
18
test/fixedbugs/issue55242.go
Normal file
18
test/fixedbugs/issue55242.go
Normal file
@ -0,0 +1,18 @@
|
||||
// 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()
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user