blob: 41e13614176854c9a853383eff4b491f574fee00 [file] [log] [blame]
// WITH_STDLIB
// TARGET_BACKEND: JVM
// FILE: 1.kt
package test
annotation class MethodAnnotation
inline fun reproduceIssue(crossinline s: () -> String): String {
val obj = object {
@MethodAnnotation fun annotatedMethod(): String {
return s()
}
}
val annotatedMethod = obj::class.java.declaredMethods.first { it.name == "annotatedMethod" }
if (annotatedMethod.annotations.isEmpty()) return "fail: can't find annotated method"
return obj.annotatedMethod()
}
// FILE: 2.kt
import test.*
fun box(): String {
return reproduceIssue { "OK" }
}