Files
kotlin-fork/idea/testData/inspectionsLocal/replaceSingleLineLet/simple.kt
T

7 lines
98 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(s: String?): Int? {
return s?.let<caret> {
it.length
}
}