Files
kotlin-fork/idea/testData/intentions/branched/ifThenToElvis/replaceWithLetAndRenameIt.kt
T

12 lines
158 B
Kotlin
Vendored

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