a5e4e0284e
This patch mutes the following test categories:
* Tests with java dependencies (System class,
java stdlib, jvm-oriented annotations etc).
* Coroutines tests.
* Reflection tests.
* Tests with an inheritance from the standard
collections.
13 lines
215 B
Kotlin
Vendored
13 lines
215 B
Kotlin
Vendored
// IGNORE_BACKEND: NATIVE
|
|
|
|
class A : ArrayList<String>() {
|
|
override val size: Int get() = super.size + 56
|
|
}
|
|
|
|
fun box(): String {
|
|
val a = A()
|
|
if (a.size != 56) return "fail: ${a.size}"
|
|
|
|
return "OK"
|
|
}
|