ITADN
首页
博客文章
资源下载
程序订做
联系我们
我的工作台
uber-go/nilaway
/
Issues
Fix `nil` append to slice and its subsequent access
#356
Open
sonalmahajan15
创建于 2025-07-23
false positive
S
sonalmahajan15
commented
``` func test(s []*int) { s = append(s, nil) s[len(s)-1] = new(int) } ```
1 条评论