41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
9 lines
275 B
Kotlin
9 lines
275 B
Kotlin
public open class Test(): java.util.RandomAccess, Cloneable, java.io.Serializable
|
|
{
|
|
public override fun clone(): Test = Test() // Override 'clone()' with more precise type 'Test'
|
|
|
|
public override fun toString() = "OK"
|
|
}
|
|
|
|
fun box() = Test().clone().toString()
|