Fix testData in compiler: add collections and ranges package to fq-names.

This commit is contained in:
Ilya Gorbunov
2015-11-28 01:42:20 +03:00
parent 98e2d27c77
commit f4822cd757
524 changed files with 1594 additions and 1552 deletions
@@ -1,4 +1,4 @@
package
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>
public fun testArrays(/*0*/ ci: kotlin.collections.List<kotlin.Int>): kotlin.Unit
public fun </*0*/ E> kotlin.collections.List<*>.toArray(/*0*/ ar: kotlin.Array<E>): kotlin.Array<E>
@@ -11,7 +11,7 @@ public interface A</*0*/ R, /*1*/ T : A<R, T>> {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public interface B</*0*/ R, /*1*/ T : B<kotlin.List<R>, T>> {
public interface B</*0*/ R, /*1*/ T : B<kotlin.collections.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
public abstract fun r(): R
@@ -1,11 +1,11 @@
package
public fun </*0*/ T> test(/*0*/ l: kotlin.List<T>): kotlin.Unit
public fun </*0*/ T> test(/*0*/ l: kotlin.collections.List<T>): kotlin.Unit
package bar {
public fun </*0*/ T> f(/*0*/ l: kotlin.List<T>): kotlin.Unit
public fun </*0*/ T> f(/*0*/ l: kotlin.collections.List<T>): kotlin.Unit
}
package foo {
public fun </*0*/ T> f(/*0*/ l: kotlin.List<T>): kotlin.Unit
public fun </*0*/ T> f(/*0*/ l: kotlin.collections.List<T>): kotlin.Unit
}
@@ -2,5 +2,5 @@ package
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
public fun </*0*/ T> f1(/*0*/ c: kotlin.collections.Collection<T>): T
public fun </*0*/ T> test(/*0*/ l: kotlin.collections.List<T>): kotlin.Unit