[FIR2IR] Use a fully expanded type when generating IrClassReference
#KT-60639 Fixed
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// ISSUE: KT-60639
|
||||
|
||||
import kotlin.reflect.KClass
|
||||
|
||||
interface A
|
||||
|
||||
typealias OtherA = A
|
||||
typealias OtherOtherA = OtherA
|
||||
|
||||
annotation class Ann(vararg val kClass: KClass<*>)
|
||||
|
||||
@Ann(A::class, OtherA::class, OtherOtherA::class)
|
||||
class Test {
|
||||
fun get() = "OK"
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
return Test().get()
|
||||
}
|
||||
Reference in New Issue
Block a user