Files
kotlin-fork/compiler/testData/codegen/properties/syntheticMethod/inClass.kt
T
2015-06-12 09:23:31 +03:00

9 lines
193 B
Kotlin
Vendored

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