9 lines
		
	
	
		
			159 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			159 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//args: -Einterfacer --internal-cmd-test
 | 
						|
package testdata
 | 
						|
 | 
						|
import "io"
 | 
						|
 | 
						|
func InterfacerCheck(f io.ReadCloser) { // ERROR "`f` can be `io.Closer`"
 | 
						|
	f.Close()
 | 
						|
}
 |