3aa6c9e74d
^KT-58240
15 lines
212 B
Kotlin
Vendored
15 lines
212 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// SKIP_KLIB_TEST
|
|
// TARGET_BACKEND: JVM
|
|
// STATUS: Cloneable is JVM-specific API
|
|
|
|
class A : Cloneable
|
|
|
|
interface I : Cloneable
|
|
|
|
class C : I
|
|
|
|
class OC : I {
|
|
override fun clone(): OC = OC()
|
|
}
|