Files
codeql/go/ql/test/query-tests/RedundantCode/DeadStoreOfField/DeadStoreOfField.go
2022-05-20 10:07:19 -07:00

10 lines
98 B
Go

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