1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/testdata/identical-branches.go
2020-05-08 22:08:16 +02:00

41 lines
468 B
Go

package fixtures
func identicalBranches() {
if true { // MATCH /both branches of the if are identical/
} else {
}
if true {
}
if true {
print()
} else {
}
if true { // MATCH /both branches of the if are identical/
print()
} else {
print()
}
if true {
if true { // MATCH /both branches of the if are identical/
print()
} else {
print()
}
} else {
println()
}
if true {
println("something")
} else {
println("else")
}
}