Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / fixedbugs / bug101.go
blob92487deaac64b2b9300f6c4785f36bf9041261ad
1 // $G $D/$F.go && $L $F.$A && ./$A.out
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
9 var a = []int { 1, 2, 3 }
11 func main() {
12 if len(a) != 3 { panic("array len") }
13 // print(a[0], " ", a[1], " ", a[2], "\n")
14 if a[0] != 1 || a[1] != 2 || a[2] != 3 { panic("array contents") }