096f9fefd1
So #KT-20583 Fixed
9 lines
171 B
Kotlin
Vendored
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) }
|
|
} |