summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2010-02-01 16:35:23 -0800
committerIan Lance Taylor <iant@golang.org>2010-02-01 16:35:23 -0800
commitab28279fb2756f4119f8ee6ff43e69b3e377372d (patch)
tree94e1416f6bea50b047f76769cc04e9b7c7509511
parentc783e2113ce8c70fe04989b60731d7597f8525b1 (diff)
downloadgolang-ab28279fb2756f4119f8ee6ff43e69b3e377372d.tar.gz
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 http://codereview.appspot.com/194165
-rw-r--r--test/import1.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/import1.go b/test/import1.go
index baed207cc..351462a26 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"
)