12 lines
180 B
Kotlin
Vendored
12 lines
180 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +ReadDeserializedContracts +UseCallsInPlaceEffect
|
|
|
|
fun test(lock: Any) {
|
|
val x: Int
|
|
|
|
synchronized(lock) {
|
|
x = 42
|
|
}
|
|
|
|
x.inc()
|
|
} |