Files
kotlin-fork/compiler/testData/resolvedCalls/thisOrSuper/thisInExtensionFunction.kt
T
2014-07-30 17:07:09 +04:00

5 lines
61 B
Kotlin
Vendored

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