[SLC] [KAPT] KT-61916 Fix generation of annotations in annotation arguments

This commit is contained in:
strangepleasures
2023-09-14 13:21:07 +00:00
committed by Space Team
parent 878452bd2b
commit cf01d2970f
16 changed files with 225 additions and 2 deletions
@@ -0,0 +1,17 @@
// FILE: a/A.kt
package a
annotation class A
// FILE: b/B.kt
package b
import a.A
annotation class B(val param: A)
@B(param = A())
class C