Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/replaceWithLet.kt
T
2019-06-07 12:23:54 +07:00

12 lines
155 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(s: String?) {
val x = <caret>if (s != null) {
bar(s)
}
else {
13
}
}
fun bar(s: String): Int = 42