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.
18 lines
465 B
Kotlin
Vendored
18 lines
465 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
|
|
fun box(): String {
|
|
var x = 42
|
|
|
|
val k1 = (x++)::class
|
|
if (k1 != Int::class) return "Fail 1: $k1"
|
|
if (x != 43) return "Fail 2: $x"
|
|
|
|
val k2 = { x *= 2; x }()::class
|
|
// Note that k2 is the class of the wrapper type java.lang.Integer
|
|
if (k2 != Integer::class) return "Fail 3: $k2"
|
|
if (x != 86) return "Fail 4: $x"
|
|
|
|
return "OK"
|
|
}
|