e0aeb8f7ec
#KT-29556 Fixed
9 lines
142 B
Kotlin
Vendored
9 lines
142 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// WITH_RUNTIME
|
|
class A {
|
|
operator fun invoke(a: A, i: Int) {}
|
|
}
|
|
|
|
fun foo(a: A) {
|
|
a.<caret>let { it(it, 1) }
|
|
} |