Files
kotlin-fork/compiler/testData/codegen/properties/syntheticMethod/inTrait.kt
T
2015-05-12 19:43:17 +02:00

8 lines
179 B
Kotlin

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