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

10 lines
125 B
Kotlin
Vendored

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