Files
kotlin-fork/backend.native/tests/external/codegen/box/objects/kt4086.kt
T
2017-03-13 15:31:46 +03:00

12 lines
128 B
Kotlin

interface N
open class Base(n: N)
class Derived : Base(object: N{}) {
}
fun box() : String {
Derived()
return "OK"
}