diff options
Diffstat (limited to 'test/import1.go')
-rw-r--r-- | test/import1.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/import1.go b/test/import1.go index d2bb55cbf..2433b5f2a 100644 --- a/test/import1.go +++ b/test/import1.go @@ -15,5 +15,5 @@ import bufio "os" // ERROR "redeclared|redefinition|incompatible" "imported and import ( "fmt" // GCCGO_ERROR "previous|not used" fmt "math" // ERROR "redeclared|redefinition|incompatible" "imported and not used: \x22math\x22 as fmt" - . "math" // ERROR "imported and not used: \x22math\x22$" + . "math" // GC_ERROR "imported and not used: \x22math\x22$" ) |