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

7 lines
176 B
Kotlin
Vendored

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