Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/propertyAnnotations.kt
T
Andrey Zinovyev b128577508 [KAPT] Some optimizations for stubs generation
* Add index to resolve compiled class by name
* Disable full property resolution
2021-03-03 12:05:49 +03:00

10 lines
167 B
Kotlin
Vendored

annotation class Anno
@Target(AnnotationTarget.PROPERTY, AnnotationTarget.CLASS)
annotation class Anno2
class Test {
@property:[Anno Anno2]
val prop = "A"
}