Files
kotlin-fork/compiler/testData/codegen/box/objects/kt4086.kt
T
2018-06-28 12:26:41 +02:00

13 lines
154 B
Kotlin
Vendored

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