blob: 6a75e9b3c69ee4947e57f945a00ebe3432b517cf [file]
// TARGET_BACKEND: JVM
// WITH_STDLIB
class Monitor
fun box(): String {
val obj = Monitor() as java.lang.Object
val obj2 = Monitor() as java.lang.Object
synchronized (obj) {
synchronized (obj2) {
obj.wait(1)
obj2.wait(1)
}
}
return "OK"
}