blob: f35447e03ec7c23916655b7fe32ff1721beaf8a8 [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"
}