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

9 lines
123 B
Kotlin
Vendored

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