blob: 20a19efbd948d331451f733588ccf919701a77e0 [file]
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
public object RefreshQueue {
private val any = Any()
private val workerThread: Thread = Thread(object : Runnable {
override fun run() {
any.hashCode()
}
});
init {
workerThread.start()
}
}
fun box() : String {
RefreshQueue
return "OK"
}