19 lines
		
	
	
		
			642 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			642 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//golangcitest:args -Eimportas
 | 
						|
//golangcitest:config_path testdata/configs/importas.yml
 | 
						|
package testdata
 | 
						|
 | 
						|
import (
 | 
						|
	wrong_alias "fmt" // ERROR `import "fmt" imported as "wrong_alias" but must be "fff" according to config`
 | 
						|
	"os"
 | 
						|
	wrong_alias_again "os" // ERROR `import "os" imported as "wrong_alias_again" but must be "std_os" according to config`
 | 
						|
 | 
						|
	wrong "github.com/pkg/errors" // ERROR `import "github.com/pkg/errors" imported as "wrong" but must be "pkgerr" according to config`
 | 
						|
)
 | 
						|
 | 
						|
func ImportAsWrongAlias() {
 | 
						|
	wrong_alias.Println("foo")
 | 
						|
	wrong_alias_again.Stdout.WriteString("bar")
 | 
						|
	os.Stdout.WriteString("test")
 | 
						|
	_ = wrong.New("baz")
 | 
						|
}
 |