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

10 lines
145 B
Kotlin
Vendored

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