Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt1932.kt
T
2013-02-11 02:01:40 +04:00

25 lines
614 B
Kotlin
Vendored

import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import java.lang.annotation.Annotation
Retention(RetentionPolicy.RUNTIME) annotation class foo(val name : String)
class Test() {
foo("OK") fun hello(input : String) {
}
}
fun box(): String {
val test = Test()
for (method in javaClass<Test>().getMethods()!!) {
val anns = method?.getAnnotations() as Array<Annotation>
if (!anns.isEmpty()) {
for (ann in anns) {
val fooAnn = ann as foo
return fooAnn.name
}
}
}
return "fail"
}