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

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