2012-02-17 04:49:30 +00:00
|
|
|
// run
|
2008-08-29 20:47:29 +00:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var a [1000] int64; // this alone works
|
|
|
|
var b [10000] int64; // this causes a runtime crash
|
2009-09-15 04:03:53 +00:00
|
|
|
_, _ = a, b;
|
2008-08-29 20:47:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
uetli:~/Source/go1/test/bugs gri$ 6g bug092.go && 6l bug092.6 && 6.out
|
|
|
|
Illegal instruction
|
|
|
|
|
|
|
|
gri: array size matters, possibly related to stack overflow check?
|
|
|
|
*/
|