From 0d82e698112464ea99bdd8cc2e695902b32e8e61 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 24 Sep 2012 00:06:41 -0400 Subject: test: prepare for 64-bit ints Minor tweaks to avoid assuming that int is always 32 bits. Update #2188. R=golang-dev, r CC=golang-dev https://golang.org/cl/6553062 --- test/fixedbugs/bug385_64.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/fixedbugs/bug385_64.go') diff --git a/test/fixedbugs/bug385_64.go b/test/fixedbugs/bug385_64.go index 76afa9a335..8c7b9d5208 100644 --- a/test/fixedbugs/bug385_64.go +++ b/test/fixedbugs/bug385_64.go @@ -11,7 +11,7 @@ package main func main() { // ERROR "stack frame too large" - var arr [1000200030]int + var arr [1000200030]int32 arr_bkup := arr _ = arr_bkup } -- cgit v1.3