0021333b91
They now pass likely due to better handling of reflection information when renaming packages when grouping tests (see cee0731).
9 lines
170 B
Kotlin
Vendored
9 lines
170 B
Kotlin
Vendored
// WITH_REFLECT
|
|
// IGNORE_BACKEND: ANDROID
|
|
class A
|
|
|
|
fun box(): String {
|
|
val klass = A::class
|
|
return if (klass.toString() == "class A") "OK" else "Fail: $klass"
|
|
}
|