]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/import1.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / import1.go
index d2bb55cbff5a85db88223adb00a738a11a3a4851..8a4534bbfeef1f39175da36dea0b8410742226dd 100644 (file)
@@ -9,11 +9,11 @@
 
 package main
 
-import "bufio" // GCCGO_ERROR "previous|not used"
-import bufio "os"      // ERROR "redeclared|redefinition|incompatible" "imported and not used"
+import "bufio" // ERROR "previous|not used"
+import bufio "os"      // ERROR "redeclared|redefinition|incompatible" "imported and not used|imported as bufio and not used"
 
 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$"
+       "fmt"   // ERROR "previous|not used"
+       fmt "math"      // ERROR "redeclared|redefinition|incompatible" "imported and not used: \x22math\x22 as fmt|imported as fmt and not used"
+       . "math"        // GC_ERROR "imported and not used: \x22math\x22$|imported and not used"
 )