blob: 95e00531f36c3b3e1da5aa6090638d9bceb9622a [file] [log] [blame]
// TARGET_BACKEND: JVM
// WITH_STDLIB
fun box(): String {
var obj = "0" as java.lang.Object
val result = synchronized (obj) {
"239"
}
if (result != "239") return "Fail: $result"
return "OK"
}