New J2K: fix testData

This commit is contained in:
Ilya Kirillov
2019-05-29 14:22:26 +03:00
parent 3a98b49556
commit ab26061b5e
39 changed files with 229 additions and 235 deletions
@@ -1,6 +1,6 @@
// ERROR: Unresolved reference: clone
// ERROR: Unresolved reference: finalize
internal class Test : Base(), Cloneable {
internal class Test : Base() {
override fun hashCode(): Int {
return super.hashCode()
}
@@ -43,7 +43,7 @@ internal open class Base : Cloneable {
}
@Throws(Throwable::class)
protected open fun finalize() {
protected override fun finalize() {
super.finalize()
}
}