github.com/nozzle/golangci-lint@v1.49.0-nz3/test/testdata/bodyclose.go (about) 1 //golangcitest:args -Ebodyclose 2 package testdata 3 4 import ( 5 "io/ioutil" 6 "net/http" 7 ) 8 9 func BodycloseNotClosed() { 10 resp, _ := http.Get("https://google.com") // want "response body must be closed" 11 _, _ = ioutil.ReadAll(resp.Body) 12 }