mirror of
				https://github.com/golang/go.git
				synced 2025-10-31 16:50:58 +00:00 
			
		
		
		
	 f2e94b58a0
			
		
	
	
		f2e94b58a0
		
	
	
	
	
		
			
			Fixes #6406. R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/46900043
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			386 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			386 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // errorcheck
 | |
| 
 | |
| // Verify that the Go compiler will not
 | |
| // die after running into an undefined
 | |
| // type in the argument list for a
 | |
| // function.
 | |
| // Does not compile.
 | |
| 
 | |
| package main
 | |
| 
 | |
| func mine(int b) int {	// ERROR "undefined.*b"
 | |
| 	return b + 2	// ERROR "undefined.*b"
 | |
| }
 | |
| 
 | |
| func main() {
 | |
| 	mine()		// GCCGO_ERROR "not enough arguments"
 | |
| 	c = mine()	// ERROR "undefined.*c|not enough arguments"
 | |
| }
 |