test: bump array size in fixedbugs/issue39292.go

The previous array length was large enough to exceed
maxImplicitStackSize on 64-bit architectures, but not on 32-bit
architectures.

Fixes #40808.

Change-Id: I69e9abb447454b2e7875ba503a0cb772e965ae31
Reviewed-on: https://go-review.googlesource.com/c/go/+/248680
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Matthew Dempsky 2020-08-14 21:30:04 -07:00
parent 948d324f7d
commit 69d34e2c69

View File

@ -6,7 +6,7 @@
package p package p
type t [10000]*int type t [20000]*int
func (t) f() { func (t) f() {
} }