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

14 lines
176 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
}