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

14 lines
164 B
Kotlin

namespace {
open class A() {
open fun foo() : Unit {
}
}
open class B() : A {
override fun foo() : Unit {
}
}
open class C() : B {
override fun foo() : Unit {
}
}
}