partial support for 'abstract' modifier added
This commit is contained in:
@@ -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() {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user