2d2f1125a9
#KT-26042 Fixed
8 lines
136 B
Kotlin
Vendored
8 lines
136 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
|
|
fun test() {
|
|
(1 to 2).let<caret> { (i, j) -> foo(i, 3) }
|
|
}
|
|
|
|
fun foo(i: Int, j: Int) = i + j |