summaryrefslogtreecommitdiff
path: root/libgo/go/go/typechecker/testdata/test1.go
blob: b0808ee7acbd618e977a1f66634ca8d75ecce6b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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.

// const and var declarations

package P1

const (
	c1         /* ERROR "missing initializer" */
	c2     int = 0
	c3, c4 = 0
)