10 lines
129 B
Kotlin
Vendored
10 lines
129 B
Kotlin
Vendored
// SKIP_KLIB_TEST
|
|
class A : Cloneable
|
|
|
|
interface I : Cloneable
|
|
|
|
class C : I
|
|
|
|
class OC : I {
|
|
override fun clone(): OC = OC()
|
|
} |