mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
10 lines
317 B
Kotlin
Vendored
10 lines
317 B
Kotlin
Vendored
import java.lang.annotation.*
|
|
|
|
<!DEPRECATED_JAVA_ANNOTATION!>@java.lang.annotation.Target(ElementType.PACKAGE)<!>
|
|
@Target(AnnotationTarget.CLASS)
|
|
annotation class my
|
|
|
|
<!DEPRECATED_JAVA_ANNOTATION!>@java.lang.annotation.Retention(RetentionPolicy.SOURCE)<!>
|
|
@Retention(AnnotationRetention.BINARY)
|
|
annotation class your
|