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

10 lines
148 B
Kotlin
Vendored

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