Files
kotlin-fork/compiler/testData/resolvedCalls/this/thisInExtensionFunction.kt
T
2014-07-08 14:48:20 +04:00

5 lines
61 B
Kotlin

class A {
fun foo() {}
}
fun A.bar() = <caret>this.foo()