8 lines
223 B
Kotlin
Vendored
8 lines
223 B
Kotlin
Vendored
import java.lang.annotation.*
|
|
|
|
@java.lang.annotation.Retention(RetentionPolicy.CLASS)
|
|
annotation class my
|
|
|
|
Retention(RetentionPolicy.RUNTIME)
|
|
Target(ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR)
|
|
annotation class my1 |