7 lines
173 B
Kotlin
Vendored
7 lines
173 B
Kotlin
Vendored
import java.lang.annotation.*
|
|
|
|
Retention(RetentionPolicy.RUNTIME) annotation class SomeAnnotation(val value: String)
|
|
|
|
@SomeAnnotation("OK") val property: Int
|
|
get() = 42
|