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