Files
kotlin-fork/js/js.translator/testFiles/multiFile/cases/classesInheritedFromOtherFile/a.kt
T
2012-02-27 21:55:58 +04:00

9 lines
104 B
Kotlin

package foo
open class A() {
open fun f() = 3;
}
open class C() : B() {
override fun f() = 5
}