mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
10 lines
298 B
Kotlin
Vendored
10 lines
298 B
Kotlin
Vendored
import java.lang.annotation.Retention
|
|
import java.lang.annotation.Target
|
|
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 |