Source file test/fixedbugs/issue5609.go
1 // errorcheck 2 3 // Copyright 2013 The Go Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file. 6 7 // issue 5609: overflow when calculating array size 8 9 package pkg 10 11 const Large uint64 = 18446744073709551615 12 13 var foo [Large]uint64 // ERROR "array bound is too large|array bound overflows|invalid array length" 14