Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/functionCallOnSafeCall.kt
T
2018-06-20 17:18:17 +03:00

9 lines
171 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(s: String, i: Int) = s.length + i
fun test() {
val nullable: String? = null
nullable?.let<caret> { foo(it, 1) }
}