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

10 lines
86 B
Go

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