Files
codeql/go/ql/test/query-tests/RedundantCode/DeadStoreOfField/DeadStoreOfField.go
2026-06-11 07:15:54 +02:00

10 lines
109 B
Go

package main
type counter struct {
val int
}
func (w counter) reset() {
w.val = 0 // $ Alert // NOT OK
}