bae8b283c7
^KT-61983 Fixed
17 lines
312 B
Kotlin
Vendored
17 lines
312 B
Kotlin
Vendored
fun test(j: J) {
|
|
j.getFoo() /*~> Unit */
|
|
j.setFoo(x = 1)
|
|
{ // BLOCK
|
|
val tmp_0: J = j
|
|
{ // BLOCK
|
|
val tmp_1: Int = tmp_0.getFoo()
|
|
tmp_0.setFoo(x = tmp_1.inc())
|
|
tmp_1
|
|
}
|
|
} /*~> Unit */
|
|
{ // BLOCK
|
|
val tmp_2: J = j
|
|
tmp_2.setFoo(x = tmp_2.getFoo().plus(other = 1))
|
|
}
|
|
}
|