mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
11 lines
170 B
Kotlin
11 lines
170 B
Kotlin
fun box(): String {
|
|
val obj = "" as java.lang.Object
|
|
|
|
synchronized (obj) {
|
|
synchronized (obj) {
|
|
obj.wait(1)
|
|
}
|
|
}
|
|
|
|
return "OK"
|
|
} |