b97aaf0f71
Relates to #KT-32010
9 lines
134 B
Kotlin
Vendored
9 lines
134 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
class A {
|
|
operator fun invoke() {}
|
|
}
|
|
|
|
fun foo(a: A) {
|
|
(1 to a).<caret>let { (i, b) -> b() }
|
|
} |