mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-22 20:18:53 -04:00
12 lines
233 B
Go
12 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)
|
|
}
|