[IR] update testdata

This commit is contained in:
Zalim Bashorov
2020-11-05 23:40:21 +03:00
committed by teamcityserver
parent 6a1ab1b325
commit fc5c674c60
94 changed files with 354 additions and 354 deletions
@@ -1,15 +1,15 @@
fun test(j: J) {
j.getFoo() /*~> Unit */
j.setFoo(x = 1)
{ //BLOCK
{ // BLOCK
val tmp0_receiver: J = j
{ //BLOCK
{ // BLOCK
val tmp1: Int = tmp0_receiver.getFoo()
tmp0_receiver.setFoo(x = tmp1.inc())
tmp1
}
} /*~> Unit */
{ //BLOCK
{ // BLOCK
val tmp2_receiver: J = j
tmp2_receiver.setFoo(x = tmp2_receiver.getFoo().plus(other = 1))
}