096f9fefd1
So #KT-20583 Fixed
9 lines
153 B
Kotlin
Vendored
9 lines
153 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
|
|
fun foo(s: String, i: Int) = s.length + i
|
|
|
|
fun test() {
|
|
val s = ""
|
|
s.let<caret> { foo(it, it.length) }
|
|
} |