Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt1932.kt
T
2016-11-09 21:41:12 +03:00

29 lines
650 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_RUNTIME
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"
}