Fix testData in compiler: add collections and ranges package to fq-names.
This commit is contained in:
+1
-1
@@ -6,5 +6,5 @@ package test
|
||||
|
||||
public final class SimpleTypeAnnotation {
|
||||
/*primary*/ public constructor SimpleTypeAnnotation()
|
||||
public final fun foo(/*0*/ x: @test.A() kotlin.IntRange): @test.A() kotlin.Int
|
||||
public final fun foo(/*0*/ x: @test.A() kotlin.ranges.IntRange): @test.A() kotlin.Int
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -10,5 +10,5 @@ package test
|
||||
|
||||
public final class TypeAnnotationWithArguments {
|
||||
/*primary*/ public constructor TypeAnnotationWithArguments()
|
||||
public final fun foo(/*0*/ param: @test.Ann(x = "param", y = 3.14.toDouble()) kotlin.IntRange): @test.Ann(x = "fun", y = 2.72.toDouble()) kotlin.Unit
|
||||
public final fun foo(/*0*/ param: @test.Ann(x = "param", y = 3.14.toDouble()) kotlin.ranges.IntRange): @test.Ann(x = "fun", y = 2.72.toDouble()) kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public fun foo(/*0*/ bar: kotlin.Map<@test.A() kotlin.String, kotlin.List<@test.A() kotlin.Int>>): kotlin.Unit
|
||||
public fun foo(/*0*/ bar: kotlin.collections.Map<@test.A() kotlin.String, kotlin.collections.List<@test.A() kotlin.Int>>): kotlin.Unit
|
||||
|
||||
@kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) public final annotation class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
Reference in New Issue
Block a user