blob: e2c129f27a3341b91b1454df6aa7f1fd7b4e3d46 [file]
// IGNORE_BACKEND: JVM
// IGNORE_BACKEND: WASM
// WASM_MUTE_REASON: UNKNOWN
// WITH_STDLIB
interface Runnable {
fun run()
}
class AnonymousClassInLambda {
fun run(): Int {
var x = 0
val threads = (1..10).map {
object : Runnable {
override fun run() {
x++
}
}
}
threads.forEach { it.run() }
return x
}
}
fun box(): String {
return if (AnonymousClassInLambda().run() == 10) "OK" else "Fail"
}