blob: 9f0b73b7e0629f20fe3cd118205dbd38d33837ee [file]
@Retention(AnnotationRetention.RUNTIME)
annotation class SomeAnnotation(val value: String)
class A {
@SomeAnnotation("OK") val property: Int
get() = 42
}