c7435ba760
We are going to deprecate `WITH_RUNTIME` directive. The main reason behind this change is that `WITH_STDLIB` directive better describes its meaning, specifically it will add kotlin stdlib to test's classpath.
28 lines
577 B
Kotlin
Vendored
28 lines
577 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_STDLIB
|
|
|
|
import java.lang.annotation.Annotation
|
|
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
annotation class foo(val name : String)
|
|
|
|
class Test() {
|
|
@foo("OK") fun hello(input : String) {
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val test = Test()
|
|
for (method in Test::class.java.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"
|
|
}
|