2014-03-20 07:28:24 +01:00
|
|
|
// +build 386 amd64p32 arm
|
2013-01-28 21:29:45 +01:00
|
|
|
// errorcheck
|
2012-09-23 13:16:14 -04:00
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2012-01-10 11:19:22 +01: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 17:13:46 -08:00
|
|
|
var arr [1000200030]int // GC_ERROR "type .* too large"
|
2012-01-10 11:19:22 +01:00
|
|
|
arr_bkup := arr
|
|
|
|
|
_ = arr_bkup
|
2013-01-28 21:29:45 +01:00
|
|
|
}
|