Files
kotlin-fork/compiler/testData/codegen/properties/syntheticMethod/inClass.kt
T
2013-10-16 14:59:37 +04:00

9 lines
194 B
Kotlin

import java.lang.annotation.*
Retention(RetentionPolicy.RUNTIME) annotation class SomeAnnotation(val value: String)
class A {
[SomeAnnotation("OK")] val property: Int
get() = 42
}