[FIR] Support of type arguments in annotations ^KT-48444 Fixed
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// FIR_IDENTICAL
|
||||
// ISSUE: KT-48444
|
||||
|
||||
annotation class Foo<T>(val s: String)
|
||||
|
||||
@Foo<Int>("")
|
||||
fun foo() {
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package
|
||||
|
||||
@Foo<kotlin.Int>(s = "") public fun foo(): kotlin.Unit
|
||||
|
||||
public final annotation class Foo</*0*/ T> : kotlin.Annotation {
|
||||
public constructor Foo</*0*/ T>(/*0*/ s: kotlin.String)
|
||||
public final val s: kotlin.String
|
||||
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 open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
Reference in New Issue
Block a user