mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
42 lines
1.5 KiB
Kotlin
Vendored
42 lines
1.5 KiB
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
|
|
import kotlin.reflect.KClass
|
|
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
annotation class Ann(
|
|
val i: Int = 1,
|
|
val s: String = "a",
|
|
val a: Ann2 = Ann2(),
|
|
val e: MyEnum = MyEnum.A,
|
|
val c: KClass<*> = A::class,
|
|
val ia: IntArray = intArrayOf(1, 2),
|
|
val sa: Array<String> = arrayOf("a", "b")
|
|
)
|
|
|
|
fun box(): String {
|
|
val ann = MyClass::class.java.getAnnotation(Ann::class.java)
|
|
if (ann == null) return "fail: cannot find Ann on MyClass}"
|
|
if (ann.i != 1) return "fail: annotation parameter i should be 1, but was ${ann.i}"
|
|
if (ann.s != "a") return "fail: annotation parameter s should be \"a\", but was ${ann.s}"
|
|
val annSimpleName = ann.a.annotationClass.java.getSimpleName()
|
|
if (annSimpleName != "Ann2") return "fail: annotation parameter a should be of class Ann2, but was $annSimpleName"
|
|
if (ann.e != MyEnum.A) return "fail: annotation parameter e should be MyEnum.A, but was ${ann.e}"
|
|
if (ann.c.java != A::class.java) return "fail: annotation parameter c should be of class A, but was ${ann.c}"
|
|
if (ann.ia[0] != 1 || ann.ia[1] != 2) return "fail: annotation parameter ia should be [1, 2], but was ${ann.ia}"
|
|
if (ann.sa[0] != "a" || ann.sa[1] != "b") return "fail: annotation parameter ia should be [\"a\", \"b\"], but was ${ann.sa}"
|
|
return "OK"
|
|
}
|
|
|
|
annotation class Ann2
|
|
|
|
enum class MyEnum {
|
|
A
|
|
}
|
|
|
|
class A
|
|
|
|
@Ann class MyClass
|