mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
14 lines
188 B
Kotlin
Vendored
14 lines
188 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
val obj = "" as java.lang.Object
|
|
|
|
synchronized (obj) {
|
|
synchronized (obj) {
|
|
obj.wait(1)
|
|
}
|
|
}
|
|
|
|
return "OK"
|
|
}
|