| // TODO: muted automatically, investigate should it be ran for JS or not |
| // IGNORE_BACKEND: JS, NATIVE |
| |
| // WITH_RUNTIME |
| |
| @Retention(AnnotationRetention.RUNTIME) |
| annotation class Ann( |
| val p1: Int, |
| val p2: Int, |
| val p3: Int, |
| val p4: Int, |
| val p5: Long, |
| val p6: Long |
| ) |
| |
| @Ann( |
| p1 = java.lang.Byte.MAX_VALUE + 1, |
| p2 = java.lang.Short.MAX_VALUE + 1, |
| p3 = java.lang.Integer.MAX_VALUE + 1, |
| p4 = java.lang.Integer.MAX_VALUE + 1, |
| p5 = java.lang.Integer.MAX_VALUE + 1.toLong(), |
| p6 = java.lang.Long.MAX_VALUE + 1 |
| ) class MyClass |
| |
| fun box(): String { |
| val annotation = MyClass::class.java.getAnnotation(Ann::class.java)!! |
| if (annotation.p1 != 128) return "fail 1, expected = ${128}, actual = ${annotation.p1}" |
| if (annotation.p2 != 32768) return "fail 2, expected = ${32768}, actual = ${annotation.p2}" |
| if (annotation.p3 != -2147483648) return "fail 3, expected = ${-2147483648}, actual = ${annotation.p3}" |
| if (annotation.p4 != -2147483648) return "fail 4, expected = ${-2147483648}, actual = ${annotation.p4}" |
| if (annotation.p5 != 2147483648.toLong()) return "fail 5, expected = ${2147483648}, actual = ${annotation.p5}" |
| if (annotation.p6 != java.lang.Long.MAX_VALUE + 1) return "fail 5, expected = ${java.lang.Long.MAX_VALUE + 1}, actual = ${annotation.p6}" |
| return "OK" |
| } |