From: Ian Lance Taylor Date: Sat, 18 Feb 2012 04:35:40 +0000 (-0800) Subject: test: change bug040 to use errorcheck X-Git-Tag: weekly.2012-02-22~133 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=292bd04a434dcd294f243e247d6e3811a0921994;p=gostls13.git test: change bug040 to use errorcheck Because bug040.go was ignoring all error messages, the fact that it got an error about fuction main was being ignored. R=golang-dev, r CC=golang-dev https://golang.org/cl/5675085 --- diff --git a/test/fixedbugs/bug040.go b/test/fixedbugs/bug040.go index 912316cb6f..007f47f9f5 100644 --- a/test/fixedbugs/bug040.go +++ b/test/fixedbugs/bug040.go @@ -1,5 +1,4 @@ -// ! $G $D/$F.go >/dev/null -// # ignoring error messages... +// errorcheck // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style @@ -7,5 +6,6 @@ package main -func main (x, x int) { // BUG redeclaration error +func f (x, // GCCGO_ERROR "previous" + x int) { // ERROR "redeclared|redefinition" "duplicate" }