diff options
-rw-r--r-- | test/import1.go | 4 |
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" ) |