mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
13 lines
158 B
Kotlin
Vendored
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"
|
|
} |