mirror of
https://github.com/golang/go
synced 2024-11-05 14:36:11 -07:00
011a525b21
For #23868 Change-Id: I07b001836e8d1411609ab84786398a5b575bf8d5 Reviewed-on: https://go-review.googlesource.com/c/go/+/417481 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Than McIntosh <thanm@google.com> Reviewed-by: Benny Siegert <bsiegert@gmail.com>
15 lines
274 B
Go
15 lines
274 B
Go
// compile
|
|
|
|
// Copyright 2022 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.
|
|
|
|
// Crashed gccgo.
|
|
|
|
package p
|
|
|
|
var F func([0]int) int
|
|
var G func() [0]int
|
|
|
|
var V = make([]int, F(G()))
|