From 60f27f0d6bd3f2dad0e63e0f630777507884b64e Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 1 Feb 2010 16:35:23 -0800 Subject: [PATCH] Match gccgo error messages. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit import1.go:12:8: error: redefinition of ‘bufio’ import1.go:11:8: note: previous definition of ‘bufio’ was here import1.go:16:2: error: redefinition of ‘fmt’ import1.go:15:2: note: previous definition of ‘fmt’ was here import1.go:11:8: error: imported and not used: bufio R=rsc CC=golang-dev https://golang.org/cl/194165 --- test/import1.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/import1.go b/test/import1.go index baed207cc0..351462a265 100644 --- a/test/import1.go +++ b/test/import1.go @@ -8,10 +8,10 @@ package main -import "bufio" // GCCGO_ERROR "previous" +import "bufio" // GCCGO_ERROR "previous|not used" import bufio "os" // ERROR "redeclared|redefinition|incompatible" import ( - "fmt"; // GCCGO_ERROR "previous" + "fmt"; // GCCGO_ERROR "previous|not used" fmt "math"; // ERROR "redeclared|redefinition|incompatible" )