Files
kotlin/compiler/testData/codegen/box/objects/kt4086.kt
2019-11-19 11:00:09 +03:00

13 lines
158 B
Kotlin
Vendored

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