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

12 lines
124 B
Plaintext
Vendored

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