blob: 8a0828ec492ae3bc42796b61cf06b05fcdc166b1 [file]
// TARGET_BACKEND: JVM
// TARGET_BACKEND: JVM_IR
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"
}