[IR] update testdata after rebase

This commit is contained in:
Zalim Bashorov
2020-11-05 23:27:19 +03:00
committed by teamcityserver
parent 1c6c996084
commit 3b1a6389ab
14 changed files with 120 additions and 74 deletions
@@ -58,7 +58,6 @@ fun testInnerClassConstructor(outer: Outer): Any {
fun testInnerClassConstructorCapturingOuter(): Any {
return use(fn = { //BLOCK
val tmp0_receiver: Outer = TODO("IrConstructorCall")
local fun Outer.<init>(p0: Int): Inner {
return TODO("IrConstructorCall")
}
@@ -93,7 +93,6 @@ fun testWithDefaults() {
fun testWithBoundReceiver() {
useSuspend(fn = { //BLOCK
val tmp0_receiver: C = TODO("IrConstructorCall")
local suspend fun C.bar() {
receiver.bar()
}
@@ -39,7 +39,6 @@ class Host {
fun testBoundReceiverLocalVar() {
var h: Host = TODO("IrConstructorCall")
use(fn = { //BLOCK
val tmp0_receiver: Host = h
local fun Host.withVararg(p0: Int) {
receiver.withVararg(xs = [p0]) /*~> Unit */
}
@@ -62,7 +61,6 @@ class Host {
fun testBoundReceiverExpression() {
use(fn = { //BLOCK
val tmp0_receiver: Host = TODO("IrConstructorCall")
local fun Host.withVararg(p0: Int) {
receiver.withVararg(xs = [p0]) /*~> Unit */
}