Files
kotlin-fork/idea/testData/inspectionsLocal/constantConditionIf/endWithElseIf2.kt
T
2020-04-15 21:53:16 +02:00

13 lines
207 B
Kotlin
Vendored

// WITH_RUNTIME
fun main() {
foo(true);
}
fun foo(someBool:Boolean) {
if (someBool) {
println("test1");
} else if (<caret>false) {
println("test2");
}
println("test3");
}