Disable some android box test

This commit is contained in:
Mikhael Bogdanov
2021-01-28 18:21:38 +01:00
parent 0ad24f5346
commit 1c612376dd
4 changed files with 6 additions and 2 deletions
@@ -1,5 +1,6 @@
// WITH_REFLECT
// TARGET_BACKEND: JVM
package test
import kotlin.reflect.KClass
@@ -12,5 +13,5 @@ class C
fun box(): String {
val klass = (C::class.annotations.first() as Ann).c.toString()
return if (klass == "class IC") "OK" else klass
return if (klass == "class test.IC") "OK" else klass
}