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

6 lines
69 B
Go

package main
func avg(x, y float64) float64 {
return (x + x) / 2
}