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

10 lines
144 B
Kotlin
Vendored

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