Files
kotlin-fork/j2k/tests/testData/ast/thisExpression/file/classAdotThisFoo.kt
T
2012-01-27 18:33:52 +04:00

11 lines
134 B
Kotlin

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