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