[FIR] KT-52157: Fix missing type parameter annotations

This commit is contained in:
Nikolay Lunyak
2022-10-06 14:13:14 +03:00
committed by teamcity
parent 5347c3c7cc
commit dd861515ad
15 changed files with 72 additions and 2 deletions
@@ -0,0 +1,8 @@
package test
// See: KT-52157
@Target(AnnotationTarget.TYPE_PARAMETER)
public annotation class Schema
class Convert<@Schema T, C>()
@@ -0,0 +1,9 @@
package test
public final class Convert</*0*/ @test.Schema T, /*1*/ C> {
/*primary*/ public constructor Convert</*0*/ @test.Schema T, /*1*/ C>()
}
@kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE_PARAMETER}) public final annotation class Schema : kotlin.Annotation {
/*primary*/ public constructor Schema()
}