Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / fixedbugs / bug170.go
blobe7f1c5120dc61a5eb226742dd896c7fccee848f4
1 // errchk $G $D/$F.go
3 // Copyright 2009 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.
7 package main
8 var v1 = ([10]int)(nil); // ERROR "illegal|nil|invalid"
9 var v2 [10]int = nil; // ERROR "illegal|nil|incompatible"
10 var v3 [10]int;
11 var v4 = nil; // ERROR "nil"
12 func main() {
13 v3 = nil; // ERROR "illegal|nil|incompatible"