From: Ian Lance Taylor Date: Mon, 24 Aug 2009 22:56:39 +0000 (-0700) Subject: Match gccgo error messages. X-Git-Tag: weekly.2009-11-06~781 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=92ac4bff747fdecbdb32f27490310ea6d60a080e;p=gostls13.git Match gccgo error messages. bug192.go:11:5: error: redefinition of ‘fmt’ bug192.go:9:8: note: previous definition of ‘fmt’ was here R=r DELTA=2 (0 added, 0 deleted, 2 changed) OCL=33780 CL=33790 --- diff --git a/test/fixedbugs/bug192.go b/test/fixedbugs/bug192.go index 0131a516f2..282ed30d36 100644 --- a/test/fixedbugs/bug192.go +++ b/test/fixedbugs/bug192.go @@ -6,6 +6,6 @@ package main -import "fmt" +import "fmt" // GCCGO_ERROR "previous" -var fmt int // ERROR "redecl" +var fmt int // ERROR "redecl|redefinition"