New J2K: Fix existing test data

This commit is contained in:
Ilya Kirillov
2018-12-01 15:55:37 +03:00
committed by Ilya Kirillov
parent 5236858c20
commit f752796408
330 changed files with 2800 additions and 60 deletions
@@ -0,0 +1,2 @@
val t: T?
get() {}
@@ -0,0 +1,51 @@
// ERROR: Unresolved reference: clone
// ERROR: Unresolved reference: finalize
package test
internal class Test : Base() {
override fun hashCode(): Int {
return super.hashCode()
}
override fun equals(o: Any?): Boolean {
return super.equals(o)
}
@Throws(CloneNotSupportedException::class)
override fun clone(): Any {
return super.clone()
}
override fun toString(): String {
return super.toString()
}
@Throws(Throwable::class)
override fun finalize() {
super.finalize()
}
}
internal open class Base {
override fun hashCode(): Int {
return super.hashCode()
}
override fun equals(o: Any?): Boolean {
return super.equals(o)
}
@Throws(CloneNotSupportedException::class)
protected open fun clone(): Any {
return super.clone()
}
override fun toString(): String {
return super.toString()
}
@Throws(Throwable::class)
protected open fun finalize() {
super.finalize()
}
}
@@ -0,0 +1 @@
fun main(): String? {}
@@ -0,0 +1,7 @@
class Foo {
private external fun nativeMethod()
var bar: Int
external get
external set
}
@@ -0,0 +1,25 @@
internal class X : Cloneable {
override fun hashCode(): Int {
return super.hashCode()
}
override fun equals(o: Any?): Boolean {
return super.equals(o)
}
override fun toString(): String {
return super.toString()
}
@Throws(CloneNotSupportedException::class)
override fun clone(): Any {
return super.clone()
}
}
internal class Y : Thread(), Cloneable {
@Throws(CloneNotSupportedException::class)
override fun clone(): Any {
return super.clone()
}
}
@@ -0,0 +1,21 @@
// ERROR: Unresolved reference: clone
internal open class Base
internal class X : Base(), Cloneable {
override fun hashCode(): Int {
return super.hashCode()
}
override fun equals(o: Any?): Boolean {
return super.equals(o)
}
override fun toString(): String {
return super.toString()
}
@Throws(CloneNotSupportedException::class)
override fun clone(): Any {
return super.clone()
}
}
@@ -0,0 +1 @@
fun <U> putU(u: U?) {}
@@ -0,0 +1 @@
fun <U, V, W> putUVW(u: U?, v: V?, w: W?) {}
+8
View File
@@ -0,0 +1,8 @@
package demo
internal class Test {
fun test(vararg args: Any?) {
var args: Any? = args
args = intArrayOf(1, 2, 3)
}
}