Files
kotlin-fork/js/js.translator/testData/multiFile/cases/classesInheritedFromOtherFile/b.kt
T
2014-03-11 20:04:00 +04:00

7 lines
126 B
Kotlin

package foo
open class B() : A() {
override fun f() = 4
}
fun box() = (A().f() == 3) && (B().f() == 4) && (C().f() == 5)