Fix testData in compiler: add collections and ranges package to fq-names.
This commit is contained in:
+4
-4
@@ -5,13 +5,13 @@ public val baz1: @b(i = 1) kotlin.Int? = 1
|
||||
public val baz2: @a() @b(i = 1) kotlin.Int? = 1
|
||||
public val baz3: @c() kotlin.Int? = 1
|
||||
public fun foo(/*0*/ i: @a() kotlin.Int?): kotlin.Unit
|
||||
public fun foo(/*0*/ l: kotlin.List<@a() kotlin.Int?>): kotlin.Unit
|
||||
public fun foo(/*0*/ l: kotlin.collections.List<@a() kotlin.Int?>): kotlin.Unit
|
||||
public fun foo1(/*0*/ i: @b(i = 1) kotlin.Int?): kotlin.Unit
|
||||
public fun foo1(/*0*/ l: kotlin.List<@b(i = 1) kotlin.Int?>): kotlin.Unit
|
||||
public fun foo1(/*0*/ l: kotlin.collections.List<@b(i = 1) kotlin.Int?>): kotlin.Unit
|
||||
public fun foo2(/*0*/ i: @a() @b(i = 1) kotlin.Int?): kotlin.Unit
|
||||
public fun foo2(/*0*/ l: kotlin.List<@a() @b(i = 1) kotlin.Int?>): kotlin.Unit
|
||||
public fun foo2(/*0*/ l: kotlin.collections.List<@a() @b(i = 1) kotlin.Int?>): kotlin.Unit
|
||||
public fun foo3(/*0*/ i: @c() kotlin.Int?): kotlin.Unit
|
||||
public fun foo3(/*0*/ l: kotlin.List<@c() kotlin.Int?>): kotlin.Unit
|
||||
public fun foo3(/*0*/ l: kotlin.collections.List<@c() kotlin.Int?>): kotlin.Unit
|
||||
public fun @a() kotlin.Int?.bar(): kotlin.Unit
|
||||
public fun @b(i = 1) kotlin.Int?.bar1(): kotlin.Unit
|
||||
public fun @a() @b(i = 1) kotlin.Int?.bar2(): kotlin.Unit
|
||||
|
||||
+3
-3
@@ -1,8 +1,8 @@
|
||||
package
|
||||
|
||||
public val x: kotlin.List<@base() kotlin.String>? = null
|
||||
public val y: kotlin.List<@base() kotlin.String>? = null
|
||||
public fun foo(/*0*/ list: kotlin.List<@typeAnn() kotlin.Int>): kotlin.List<@typeAnn() kotlin.Int>
|
||||
public val x: kotlin.collections.List<@base() kotlin.String>? = null
|
||||
public val y: kotlin.collections.List<@base() kotlin.String>? = null
|
||||
public fun foo(/*0*/ list: kotlin.collections.List<@typeAnn() kotlin.Int>): kotlin.collections.List<@typeAnn() kotlin.Int>
|
||||
|
||||
public final annotation class base : kotlin.Annotation {
|
||||
public constructor base()
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package
|
||||
|
||||
public val </*0*/ T> @x() kotlin.List<@x() T>.f: kotlin.Int
|
||||
public fun </*0*/ T, /*1*/ U : T> kotlin.List<@x() T>.firstTyped(): U
|
||||
public val </*0*/ T> @x() kotlin.collections.List<@x() T>.f: kotlin.Int
|
||||
public fun </*0*/ T, /*1*/ U : T> kotlin.collections.List<@x() T>.firstTyped(): U
|
||||
public fun @x() A.foo(/*0*/ a: @x() kotlin.Int): kotlin.Unit
|
||||
public fun </*0*/ T> @x() kotlin.List<@x() T>.foo(/*0*/ l: kotlin.List<@x() T>): @x() kotlin.List<@x() T>
|
||||
public fun </*0*/ T> @x() kotlin.collections.List<@x() T>.foo(/*0*/ l: kotlin.collections.List<@x() T>): @x() kotlin.collections.List<@x() T>
|
||||
|
||||
public final class A {
|
||||
public constructor A()
|
||||
|
||||
Reference in New Issue
Block a user