Files
kotlin-fork/idea/testData/shortenRefs/this/shortenThisBothReceivers.kt.after
T
2015-02-11 14:40:22 +03:00

9 lines
87 B
Plaintext

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