Files
kotlin-fork/testData/ast/thisExpression/file/classAdotThisFoo.kt
T
2011-11-09 16:04:57 +04:00

13 lines
130 B
Kotlin

namespace {
open class Base {
fun foo() : Unit {
}
}
open class A : Base {
open class C {
fun test() : Unit {
this@A.foo()
}
}
}
}