10b9ff1066
There is inconsistent behaviour between JS and JVM in case of package presence
10 lines
196 B
Kotlin
Vendored
10 lines
196 B
Kotlin
Vendored
// IGNORE_BACKEND: NATIVE
|
|
// WITH_REFLECT
|
|
// IGNORE_BACKEND: ANDROID
|
|
class A
|
|
|
|
fun box(): String {
|
|
val klass = A::class
|
|
return if (klass.toString() == "class A") "OK" else "Fail: $klass"
|
|
}
|