fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
Vendored
+2
-2
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
internal fun </*0*/ T, /*1*/ R, /*2*/ S> foo(/*0*/ block: (T) -> R, /*1*/ second: (T) -> S): (T) -> R
|
||||
internal fun main(/*0*/ args: kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
public fun </*0*/ T, /*1*/ R, /*2*/ S> foo(/*0*/ block: (T) -> R, /*1*/ second: (T) -> S): (T) -> R
|
||||
public fun main(/*0*/ args: kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
Vendored
+4
-4
@@ -1,11 +1,11 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
internal fun </*0*/ T, /*1*/ R> bar(/*0*/ f: (T) -> R): (T) -> R
|
||||
internal fun </*0*/ T, /*1*/ R> foo(/*0*/ a: a.A<T, R>): a.A<T, R>
|
||||
internal fun test(): kotlin.Unit
|
||||
public fun </*0*/ T, /*1*/ R> bar(/*0*/ f: (T) -> R): (T) -> R
|
||||
public fun </*0*/ T, /*1*/ R> foo(/*0*/ a: a.A<T, R>): a.A<T, R>
|
||||
public fun test(): kotlin.Unit
|
||||
|
||||
internal final class A</*0*/ T, /*1*/ R> {
|
||||
public final class A</*0*/ T, /*1*/ R> {
|
||||
public constructor A</*0*/ T, /*1*/ R>()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
|
||||
+5
-5
@@ -1,18 +1,18 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
internal fun main(/*0*/ args: kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
internal fun </*0*/ T : a.Closeable, /*1*/ R> T.foo(/*0*/ block: (T) -> R): (T) -> R
|
||||
internal fun </*0*/ T : a.Closeable, /*1*/ R> T.foo(/*0*/ block: (T, T) -> R): (T, T) -> R
|
||||
public fun main(/*0*/ args: kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
public fun </*0*/ T : a.Closeable, /*1*/ R> T.foo(/*0*/ block: (T) -> R): (T) -> R
|
||||
public fun </*0*/ T : a.Closeable, /*1*/ R> T.foo(/*0*/ block: (T, T) -> R): (T, T) -> R
|
||||
|
||||
internal final class C : a.Closeable {
|
||||
public final class C : a.Closeable {
|
||||
public constructor C()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal interface Closeable {
|
||||
public interface Closeable {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
+4
-4
@@ -1,8 +1,8 @@
|
||||
package
|
||||
|
||||
package aa {
|
||||
internal fun bar(/*0*/ f: ([ERROR : A]) -> kotlin.Unit): kotlin.Unit
|
||||
internal fun </*0*/ T, /*1*/ R> foo(/*0*/ block: (T) -> R): (T) -> R
|
||||
internal fun test1(): kotlin.Unit
|
||||
internal fun test2(): kotlin.Unit
|
||||
public fun bar(/*0*/ f: ([ERROR : A]) -> kotlin.Unit): kotlin.Unit
|
||||
public fun </*0*/ T, /*1*/ R> foo(/*0*/ block: (T) -> R): (T) -> R
|
||||
public fun test1(): kotlin.Unit
|
||||
public fun test2(): kotlin.Unit
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,8 +1,8 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
internal fun </*0*/ T> arrayListOf(/*0*/ vararg values: T /*kotlin.Array<out T>*/): kotlin.MutableList<T>
|
||||
internal fun </*0*/ R> bar(/*0*/ r: kotlin.MutableList<R>, /*1*/ f: () -> R): kotlin.Boolean
|
||||
internal fun </*0*/ R> foo(/*0*/ f: () -> R, /*1*/ r: kotlin.MutableList<R>): kotlin.Boolean
|
||||
internal fun test(): kotlin.Unit
|
||||
public fun </*0*/ T> arrayListOf(/*0*/ vararg values: T /*kotlin.Array<out T>*/): kotlin.MutableList<T>
|
||||
public fun </*0*/ R> bar(/*0*/ r: kotlin.MutableList<R>, /*1*/ f: () -> R): kotlin.Boolean
|
||||
public fun </*0*/ R> foo(/*0*/ f: () -> R, /*1*/ r: kotlin.MutableList<R>): kotlin.Boolean
|
||||
public fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user