3d60ed8874
^KT-59057 Merge-request: KT-MR-10747 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
20 lines
488 B
Kotlin
Vendored
20 lines
488 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// TARGET_BACKEND: JVM_IR
|
|
// TODO: Consider rewriting this test without using threads, since the issue is not about threads at all.
|
|
|
|
object RefreshQueue {
|
|
val any = Any()
|
|
val workerThread: Thread = Thread(object : Runnable {
|
|
override fun run() {
|
|
val a = any
|
|
val b = RefreshQueue.any
|
|
if (a != b) throw AssertionError()
|
|
}
|
|
})
|
|
}
|
|
|
|
fun box() : String {
|
|
RefreshQueue.workerThread.run()
|
|
return "OK"
|
|
}
|