Files
codeql/go/ql/src/RedundantCode/SelfAssignmentGood.go
2022-05-20 10:07:19 -07:00

6 lines
78 B
Go

package main
func (r *Rect) setHeightGood(height int) {
r.height = height
}