Files
kotlin-fork/analysis/analysis-api/testData/components/callResolver/resolveCall/annotationInAnnotation_vararg.kt
T

7 lines
176 B
Kotlin
Vendored

annotation class Annotation(vararg val strings: String)
annotation class AnnotationInner(val value: Annotation)
@AnnotationInner(<expr>Annotation("v1", "v2")</expr>)
class C