commit | 5182aff001488a791747439f33d6d92d076ebd7a | [log] [tgz] |
---|---|---|
author | Robert Griesemer <gri@golang.org> | Fri Jun 06 16:59:54 2008 -0700 |
committer | Robert Griesemer <gri@golang.org> | Fri Jun 06 16:59:54 2008 -0700 |
tree | 656911921d8561cff4f3ba46e908182c2fdcbf0f | |
parent | 094ee44b32d1f459534c3f187da16619f4909d7a [diff] [blame] |
- more tests (mostly redeclaration errors that are not checked) SVN=121546
diff --git a/test/bug037.go b/test/bug037.go new file mode 100644 index 0000000..b0345cc --- /dev/null +++ b/test/bug037.go
@@ -0,0 +1,11 @@ +// errchk $G $D/$F.go + +// Copyright 2009 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. + +package main + +func main() { + s := vlong(0); // BUG no vlong specified in the language +}