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

6 lines
80 B
Go

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