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

10 lines
97 B
Go

package main
func abs(x int) int {
if x >= 0 { // $ Alert
return x
} else {
return x
}
}