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

10 lines
91 B
Go

package main
func absGood(x int) int {
if x >= 0 {
return x
} else {
return -x
}
}