blob: bea1b991254423bb37f171bc7d69de6a5f7d2be2 [file] [log] [blame]
Russ Cox8f194bf2009-03-12 19:04:38 -07001// errchk $G $D/$F.go
2
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.
6
7package main
8
9const (
Rob Pike4f61fc92010-09-04 10:36:13 +100010 A int = 1
Ian Lance Taylorbd64e812009-03-16 21:48:07 -070011 B byte; // ERROR "type without expr|expected .=."
Russ Cox8f194bf2009-03-12 19:04:38 -070012)