example with customer builder added,

initial support for constructors added
This commit is contained in:
Sergey Ignatov
2011-11-08 14:23:30 +04:00
parent 33f3350bb0
commit 39112d6327
50 changed files with 259 additions and 73 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
namespace {
open class A {
open class A() {
open fun a() : Unit {
}
}
class B : A {
class B() : A {
override fun a() : Unit {
}
}
@@ -1,13 +1,13 @@
namespace {
open class A {
open class A() {
open fun foo() : Unit {
}
}
open class B : A {
open class B() : A {
override fun foo() : Unit {
}
}
open class C : B {
open class C() : B {
override fun foo() : Unit {
}
}