aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/go.test/test/fixedbugs/bug255.go
blob: acf4f23910d69f2a48f530c1744cd2aef6446c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// errorcheck

// Copyright 2010 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

var a [10]int	// ok
var b [1e1]int	// ok
var c [1.5]int	// ERROR "truncated"
var d ["abc"]int	// ERROR "invalid array bound|not numeric"
var e [nil]int	// ERROR "invalid array bound|not numeric"
var f [e]int	// ERROR "invalid array bound|not constant"
var g [1<<65]int	// ERROR "array bound is too large|overflows"