Files
kotlin-fork/compiler/testData/codegen/box/annotations/annotationProperty.kt
T
2020-03-23 15:13:50 +03:00

14 lines
346 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_RUNTIME
@Target(AnnotationTarget.PROPERTY)
annotation class Anno(val value: String)
annotation class M(@Anno("OK") val result: Int)
fun box(): String =
M::class.java.getAnnotation(Anno::class.java)?.value
// TODO: fix KT-22463 and enable this test
// ?: "Fail: no annotation"
?: "OK"