13 lines
		
	
	
		
			234 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			234 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //golangcitest:args -Ebodyclose
 | |
| package testdata
 | |
| 
 | |
| import (
 | |
| 	"io/ioutil"
 | |
| 	"net/http"
 | |
| )
 | |
| 
 | |
| func BodycloseNotClosed() {
 | |
| 	resp, _ := http.Get("https://google.com") // ERROR "response body must be closed"
 | |
| 	_, _ = ioutil.ReadAll(resp.Body)
 | |
| }
 | 
