Files
kotlin/compiler/testData/codegen/box/objects/kt4086.kt
2015-05-12 19:43:17 +02: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"
}