woniu317

Results 3 issues of woniu317

``` var resp *http.Response func testGlobal() { resp, _ = http.Get("https://example.com") resp.Body.Close() } ``` It cause panic when check this code. ``` ERRO [runner] Panic: bodyclose: package "main" (isInitialPkg: true,...

#### Description (what this PR does / why we need it): #### Which issue(s) this PR fixes (resolves / be part of): #### Other special notes for the reviewers:

When we convert an array of strings to numbers, the `Map` function is called. ``` numbers := Map(strs, func(item string, index int) int { number, err := strconv.Atoi(item) if err...