Rename test of rem operator evaluation

This commit is contained in:
Ilya Gorbunov
2021-02-21 05:31:17 +03:00
parent 3da3f0e653
commit 58e6f775bb
6 changed files with 25 additions and 25 deletions
+2 -2
View File
@@ -17,8 +17,8 @@ fun box(): String {
val annotation = MyClass::class.java.getAnnotation(Ann::class.java)!!
if (annotation.b != 1.toByte()) return "fail 1"
if (annotation.s != 1.toShort()) return "fail 2"
if (annotation.i != 1) return "fail 2"
if (annotation.l != 1.toLong()) return "fail 2"
if (annotation.i != 1) return "fail 3"
if (annotation.l != 1.toLong()) return "fail 4"
return "OK"
}