Files
kotlin/compiler/testData/codegen/box/objects/objectWithSuperclass.kt
2013-11-26 17:29:59 +04:00

17 lines
241 B
Kotlin
Vendored

open class A {
open fun foo(): Int {
return 2
}
}
object O: A() {
override fun foo(): Int {
val s = super<A>.foo()
return s + 3
}
}
fun box() : String {
return if (O.foo() == 5) "OK" else "fail"
}