[IR] update testdata: better support for IrCall

This commit is contained in:
Zalim Bashorov
2020-11-06 01:14:47 +03:00
committed by teamcityserver
parent ef2adfa835
commit 197f5ca885
72 changed files with 203 additions and 203 deletions
@@ -54,9 +54,9 @@ interface IReceiver {
fun IReceiver.test() {
{ // BLOCK
val tmp0_iterator: IntCell = <this>.iterator($receiver = FiveTimes)
while (<this>.hasNext($receiver = tmp0_iterator)) { // BLOCK
val i: Int = <this>.next($receiver = tmp0_iterator)
val tmp0_iterator: IntCell = (<this>, FiveTimes).iterator()
while ((<this>, tmp0_iterator).hasNext()) { // BLOCK
val i: Int = (<this>, tmp0_iterator).next()
{ // BLOCK
println(message = i)
}