a8e1a6a2a1
^KT-25962 Fixed
11 lines
163 B
Kotlin
Vendored
11 lines
163 B
Kotlin
Vendored
// !LANGUAGE: +ReadDeserializedContracts +UseCallsInPlaceEffect
|
|
|
|
fun test(lock: Any) {
|
|
val x: Int
|
|
|
|
synchronized(lock) {
|
|
x = 42
|
|
}
|
|
|
|
x.inc()
|
|
} |