partial support for 'abstract' modifier added

This commit is contained in:
svtk
2011-09-06 14:57:42 +04:00
41 changed files with 354 additions and 113 deletions
@@ -4,13 +4,13 @@ fun box() {
}
open class A {
fun foo()
fun foo() {}
}
open class B : A {
fun foo()
fun foo() {}
}
open class C : B {
fun foo()
fun foo() {}
}