mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
13 lines
522 B
Kotlin
Vendored
13 lines
522 B
Kotlin
Vendored
// !LANGUAGE: -RestrictRetentionForExpressionAnnotations
|
|
|
|
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class TestRetentionSource
|
|
|
|
@Target(AnnotationTarget.EXPRESSION)
|
|
<!RESTRICTED_RETENTION_FOR_EXPRESSION_ANNOTATION_WARNING!>@Retention(AnnotationRetention.BINARY)<!>
|
|
annotation class TestRetentionBinary
|
|
|
|
@Target(AnnotationTarget.EXPRESSION)
|
|
<!RESTRICTED_RETENTION_FOR_EXPRESSION_ANNOTATION_WARNING!>@Retention(AnnotationRetention.RUNTIME)<!>
|
|
annotation class TestRetentionRuntime |