mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
15 lines
282 B
Kotlin
Vendored
15 lines
282 B
Kotlin
Vendored
// Same as withoutSource.kt
|
|
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class SourceAnno
|
|
|
|
@Retention(AnnotationRetention.BINARY)
|
|
annotation class BinaryAnno
|
|
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
annotation class RuntimeAnno
|
|
|
|
@SourceAnno
|
|
@BinaryAnno
|
|
@RuntimeAnno
|
|
class Test |