Files
kotlin/compiler/testData/codegen/box/objects/kt4086.kt
2018-08-09 14:22:46 +03:00

12 lines
128 B
Kotlin
Vendored

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