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

12 lines
124 B
Plaintext
Vendored

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