Removing usages of tuples from test data

(KT-2358 Drop tuples)
 #KT-2358 In progress
This commit is contained in:
Andrey Breslav
2012-09-18 13:48:20 +04:00
parent dee5152f9b
commit 5eaa5b396b
64 changed files with 172 additions and 330 deletions
@@ -1,5 +1,5 @@
package test
public open class MethodTypePOneUpperBound() : java.lang.Object() {
public open fun <T : Cloneable?> bar() : Unit = #()
public open fun <T : Cloneable?> bar() : Unit = Unit.VALUE
}
@@ -1,5 +1,5 @@
package test
public class MethodWithTypeP() : java.lang.Object() {
public fun <P> f() : Unit = #()
public fun <P> f() : Unit = Unit.VALUE
}
@@ -1,5 +1,5 @@
package test
public class MethodWithTypePP() : java.lang.Object() {
public fun <P, Q : P> f() : Unit = #()
public fun <P, Q : P> f() : Unit = Unit.VALUE
}
@@ -1,5 +1,5 @@
package test
public open class MethodWithTypePRefClassP<P>() : java.lang.Object() {
public fun <Q : P> f() : Unit = #()
public fun <Q : P> f() : Unit = Unit.VALUE
}
@@ -1,5 +1,5 @@
package test
public final class MethosWithPRefTP() : java.lang.Object() {
public fun <P> f(p0: P?) : Unit = #()
public fun <P> f(p0: P?) : Unit = Unit.VALUE
}
@@ -1,5 +1,5 @@
package test
public open class VarargInt() : java.lang.Object() {
public open fun vararg(vararg p0: Int): Unit = #()
public open fun vararg(vararg p0: Int): Unit = Unit.VALUE
}
@@ -1,5 +1,5 @@
package test
public open class VarargString() : java.lang.Object() {
public open fun vararg(vararg p0: String?): Unit = #()
public open fun vararg(vararg p0: String?): Unit = Unit.VALUE
}