Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceInvoke/dotQualifiedReceiver2.kt.after
T
2020-04-15 09:59:23 +02:00

11 lines
103 B
Plaintext
Vendored

class A {
fun b() = B()
}
class B {
operator fun invoke() {}
}
fun test(a: A) {
a.b()()
}