471ddc5a93
(cherry picked from commit 6177b2b)
15 lines
279 B
Kotlin
Vendored
15 lines
279 B
Kotlin
Vendored
// Same as withSource.kt
|
|
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class SourceAnno
|
|
|
|
@Retention(AnnotationRetention.BINARY)
|
|
annotation class BinaryAnno
|
|
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
annotation class RuntimeAnno
|
|
|
|
@SourceAnno
|
|
@BinaryAnno
|
|
@RuntimeAnno
|
|
class Test |