~push-gopher/golang/tip

« back to all changes in this revision

Viewing changes to test/fixedbugs/issue5609.go

  • Committer: Push Gopher
  • Author(s): Mikio Hara
  • Date: 2013-07-22 11:08:58 UTC
  • Revision ID: push-gopher@niemeyer.net-20130722110858-qu0mq7ulldmjybbt
net: remove unnecessary bit masking

R=dave
CC=golang-dev
https://codereview.appspot.com/11537044
HG=17349:5c948e69f885

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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"