From: Ian Lance Taylor Date: Tue, 2 Feb 2010 00:35:23 +0000 (-0800) Subject: Match gccgo error messages. X-Git-Tag: weekly.2010-02-04~35 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=60f27f0d6bd3f2dad0e63e0f630777507884b64e;p=gostls13.git Match gccgo error messages. 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 --- 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" )