Files
kotlin/compiler/testData/codegen/boxWithStdlib/reflection/annotations/simpleFunAnnotation.kt

7 lines
177 B
Kotlin
Vendored

annotation(retention = AnnotationRetention.RUNTIME) class Simple(val value: String)
@Simple("OK")
fun box(): String {
return (::box.annotations.single() as Simple).value
}