aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/go.test/test/import1.go
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/go.test/test/import1.go')
-rw-r--r--gcc/testsuite/go.test/test/import1.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/testsuite/go.test/test/import1.go b/gcc/testsuite/go.test/test/import1.go
index 56b29d5..2433b5f 100644
--- a/gcc/testsuite/go.test/test/import1.go
+++ b/gcc/testsuite/go.test/test/import1.go
@@ -14,5 +14,6 @@ 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"
+ fmt "math" // ERROR "redeclared|redefinition|incompatible" "imported and not used: \x22math\x22 as fmt"
+ . "math" // GC_ERROR "imported and not used: \x22math\x22$"
)