1bf3bde4f8
^KT-59057 Merge-request: KT-MR-10749 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
15 lines
289 B
Kotlin
Vendored
15 lines
289 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// TARGET_BACKEND: JVM_IR
|
|
|
|
data class A(var x: Int) : Cloneable {
|
|
public override fun clone(): A = A(x)
|
|
}
|
|
|
|
fun box(): String {
|
|
val a = A(42)
|
|
val b = a.clone()
|
|
if (b != a) return "Fail equals"
|
|
if (b === a) return "Fail identity"
|
|
return "OK"
|
|
}
|