blob: a87e9865103b40fe781c24feee8fb500192d7305 [file] [log] [blame]
Robert Griesemer5182aff2008-06-06 16:59:54 -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
9func main (x int) {
10 var x int; // BUG redeclaration error
11}