Files
kotlin-fork/js/js.translator/testFiles/multiFile/cases/classesInheritedFromOtherFile/b.kt
T
2012-02-27 21:55:58 +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)