From 92ac4bff747fdecbdb32f27490310ea6d60a080e Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 24 Aug 2009 15:56:39 -0700 Subject: [PATCH] Match gccgo error messages. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- test/fixedbugs/bug192.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fixedbugs/bug192.go b/test/fixedbugs/bug192.go index 0131a516f2f..282ed30d361 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"