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

9 lines
115 B
Kotlin

class A {
fun test(b: B) {
<selection>this.b()</selection>
}
}
class B() {
fun A.invoke() {}
}