Files
kotlin-fork/idea/testData/inspectionsLocal/constantConditionIf/endWithElseIf.kt
T

12 lines
141 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(x: Int) {}
fun bar(s: String?) {
if (s == null) {
1
}
else if (<caret>true) {
2
}
}