Files
kotlin-fork/testData/ast/thisExpression/file/classAdotThisFoo.kt
T
Sergey Ignatov 39112d6327 example with customer builder added,
initial support for constructors added
2011-11-09 16:04:57 +04:00

13 lines
146 B
Kotlin

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