[IR] update testdata after rebase

This commit is contained in:
Zalim Bashorov
2020-11-20 17:00:48 +03:00
committed by teamcityserver
parent 2773e4baca
commit 43ee50b91d
9 changed files with 110 additions and 10 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
fun test1(): Int {
return "42".run<String, Int>(block = local fun String.<anonymous>(): Int {
return <this>.<get-length>()
return $this$run.<get-length>()
}
)
}
@@ -35,7 +35,7 @@ fun test(fooImpl: IFoo, invokeImpl: IInvoke) {
with<A, Int>(receiver = A, block = local fun A.<anonymous>(): Int {
return with<IFoo, Int>(receiver = fooImpl, block = local fun IFoo.<anonymous>(): Int {
return with<IInvoke, Int>(receiver = invokeImpl, block = local fun IInvoke.<anonymous>(): Int {
return (<this>, (<this>, <this>).<get-foo>()).invoke()
return ($this$with, ($this$with, $this$with).<get-foo>()).invoke()
}
)
}