mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
16 lines
255 B
Kotlin
Vendored
16 lines
255 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
var obj = "0" as java.lang.Object
|
|
val result = synchronized (obj) {
|
|
"239"
|
|
}
|
|
|
|
if (result != "239") return "Fail: $result"
|
|
|
|
return "OK"
|
|
}
|