mirror of
				https://github.com/golang/go.git
				synced 2025-10-31 16:50:58 +00:00 
			
		
		
		
	 60f27f0d6b
			
		
	
	
		60f27f0d6b
		
	
	
	
	
		
			
			import1.go:12:8: error: redefinition of ‘bufio’ import1.go:11:8: note: previous definition of ‘bufio’ was here import1.go:16:2: error: redefinition of ‘fmt’ import1.go:15:2: note: previous definition of ‘fmt’ was here import1.go:11:8: error: imported and not used: bufio R=rsc CC=golang-dev https://golang.org/cl/194165
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			463 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			463 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // errchk $G -e $D/$F.go
 | |
| 
 | |
| // 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
 | |
| 
 | |
| package main
 | |
| 
 | |
| import "bufio"	// GCCGO_ERROR "previous|not used"
 | |
| import bufio "os"	// ERROR "redeclared|redefinition|incompatible"
 | |
| 
 | |
| import (
 | |
| 	"fmt";	// GCCGO_ERROR "previous|not used"
 | |
| 	fmt "math";	// ERROR "redeclared|redefinition|incompatible"
 | |
| )
 |