]> 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 baed207cc02987d9305b307f0343fb4c07e36683..8a4534bbfeef1f39175da36dea0b8410742226dd 100644 (file)
@@ -1,17 +1,19 @@
-// errchk $G -e $D/$F.go
+// errorcheck
 
 // Copyright 2009 The Go Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// check for import conflicts
+// Verify that import conflicts are detected by the compiler.
+// Does not compile.
 
 package main
 
-import "bufio" // GCCGO_ERROR "previous"
-import bufio "os"      // ERROR "redeclared|redefinition|incompatible"
+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"
-       fmt "math";     // ERROR "redeclared|redefinition|incompatible"
+       "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"
 )