ITADN

Fix `nil` append to slice and its subsequent access

#356Opensonalmahajan15 创建于 2025-07-23
false positive
S
sonalmahajan15commented
``` func test(s []*int) { s = append(s, nil) s[len(s)-1] = new(int) } ```
1 条评论