Files
kotlin/compiler/testData/codegen/box/synchronized/nestedSameObject.kt

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"
}