Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/letMultipleLines.kt
T

10 lines
146 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo() {
val foo: String? = null
foo?.let {
it.length<caret>
it.length
}
}