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

14 lines
187 B
Go

package main
type Rect struct {
x, y, width, height int
}
func (r *Rect) setWidth(width int) {
r.width = width
}
func (r *Rect) setHeight(height int) {
height = height // $ Alert
}