2014-03-20 00:28:24 -06:00
|
|
|
// +build 386 amd64p32 arm
|
2013-01-28 13:29:45 -07:00
|
|
|
// errorcheck
|
2012-09-23 11:16:14 -06:00
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2012-01-10 03:19:22 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Issue 2444
|
|
|
|
|
|
|
|
package main
|
|
|
|
func main() {
|
2013-12-12 18:13:46 -07:00
|
|
|
var arr [1000200030]int // GC_ERROR "type .* too large"
|
2012-01-10 03:19:22 -07:00
|
|
|
arr_bkup := arr
|
|
|
|
_ = arr_bkup
|
2013-01-28 13:29:45 -07:00
|
|
|
}
|