Files
kotlin-fork/idea/testData/inspections/redundantIf/redundantIf.kt
T
2016-05-23 21:02:38 +03:00

12 lines
169 B
Kotlin
Vendored

fun foo() {
if (value % 2 == 0) {
return true
} else {
return false
}
}
fun bar() {
if (value % 2 == 0) return true else return false
}