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

7 lines
107 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(s: String?) {
val x = s?.let { bar(it) } ?: 13
}
fun bar(s: String): Int = 42