fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package
|
||||
|
||||
internal fun testArrays(/*0*/ ci: kotlin.List<kotlin.Int>): kotlin.Unit
|
||||
internal fun </*0*/ E> kotlin.List<*>.toArray(/*0*/ ar: kotlin.Array<E>): kotlin.Array<E>
|
||||
public fun testArrays(/*0*/ ci: kotlin.List<kotlin.Int>): kotlin.Unit
|
||||
public fun </*0*/ E> kotlin.List<*>.toArray(/*0*/ ar: kotlin.Array<E>): kotlin.Array<E>
|
||||
|
||||
@@ -6,7 +6,7 @@ package h {
|
||||
public constructor MyClass</*0*/ S, /*1*/ T>(/*0*/ param: h.MyClass<S, T>)
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
internal final fun test(): kotlin.Unit
|
||||
public final fun test(): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
package
|
||||
|
||||
internal fun testA(/*0*/ a: A<*, *>): kotlin.Unit
|
||||
internal fun testB(/*0*/ b: B<*, *>): kotlin.Unit
|
||||
public fun testA(/*0*/ a: A<*, *>): kotlin.Unit
|
||||
public fun testB(/*0*/ b: B<*, *>): kotlin.Unit
|
||||
|
||||
internal interface A</*0*/ R, /*1*/ T : A<R, T>> {
|
||||
public interface A</*0*/ R, /*1*/ T : A<R, T>> {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
internal abstract fun r(): R
|
||||
internal abstract fun t(): T
|
||||
public abstract fun r(): R
|
||||
public abstract fun t(): T
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal interface B</*0*/ R, /*1*/ T : B<kotlin.List<R>, T>> {
|
||||
public interface B</*0*/ R, /*1*/ T : B<kotlin.List<R>, T>> {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
internal abstract fun r(): R
|
||||
internal abstract fun t(): T
|
||||
public abstract fun r(): R
|
||||
public abstract fun t(): T
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,8 +1,8 @@
|
||||
package
|
||||
|
||||
internal fun </*0*/ T> f(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
internal fun </*0*/ T> test(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
public fun </*0*/ T> f(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
public fun </*0*/ T> test(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
|
||||
package foo {
|
||||
internal fun </*0*/ T> f(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
public fun </*0*/ T> f(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
internal fun </*0*/ T> f1(/*0*/ l: [ERROR : List1<T>]<T>): T
|
||||
internal fun </*0*/ T> f1(/*0*/ l: [ERROR : List2<T>]<T>): T
|
||||
internal fun </*0*/ T> f1(/*0*/ c: kotlin.Collection<T>): T
|
||||
internal fun </*0*/ T> test(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
public fun </*0*/ T> f1(/*0*/ l: [ERROR : List1<T>]<T>): T
|
||||
public fun </*0*/ T> f1(/*0*/ l: [ERROR : List2<T>]<T>): T
|
||||
public fun </*0*/ T> f1(/*0*/ c: kotlin.Collection<T>): T
|
||||
public fun </*0*/ T> test(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
|
||||
Reference in New Issue
Block a user