| 
									
										
										
										
											2009-05-08 16:40:55 -07:00
										 |  |  | // 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-01 16:35:23 -08:00
										 |  |  | import "bufio"	// GCCGO_ERROR "previous|not used" | 
					
						
							| 
									
										
										
										
											2009-08-19 15:18:08 -07:00
										 |  |  | import bufio "os"	// ERROR "redeclared|redefinition|incompatible" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-08 16:40:55 -07:00
										 |  |  | import ( | 
					
						
							| 
									
										
										
										
											2010-09-04 10:36:13 +10:00
										 |  |  | 	"fmt"	// GCCGO_ERROR "previous|not used" | 
					
						
							|  |  |  | 	fmt "math"	// ERROR "redeclared|redefinition|incompatible" | 
					
						
							| 
									
										
										
										
											2009-12-10 11:25:54 -08:00
										 |  |  | ) |