diff options
| author | Russ Cox <rsc@golang.org> | 2012-09-24 00:06:41 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2012-09-24 00:06:41 -0400 |
| commit | 0d82e698112464ea99bdd8cc2e695902b32e8e61 (patch) | |
| tree | 4a25ad9c78fcba9b110edaabf3b3d947d809220d /test/fixedbugs/bug385_64.go | |
| parent | 3cd890dd5a8e5be33ce6f65ab7690ba0e1c235ef (diff) | |
| download | go-git-0d82e698112464ea99bdd8cc2e695902b32e8e61.tar.gz | |
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
Diffstat (limited to 'test/fixedbugs/bug385_64.go')
| -rw-r--r-- | test/fixedbugs/bug385_64.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |
