[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
@@ -14,7 +14,7 @@ class Host {
}
fun testImplicitThis() {
use(fn = { //BLOCK
use(fn = { // BLOCK
local fun Host.withVararg(p0: Int) {
receiver.withVararg(xs = [p0]) /*~> Unit */
}
@@ -26,7 +26,7 @@ class Host {
fun testBoundReceiverLocalVal() {
val h: Host = TODO("IrConstructorCall")
use(fn = { //BLOCK
use(fn = { // BLOCK
local fun Host.withVararg(p0: Int) {
receiver.withVararg(xs = [p0]) /*~> Unit */
}
@@ -38,7 +38,7 @@ class Host {
fun testBoundReceiverLocalVar() {
var h: Host = TODO("IrConstructorCall")
use(fn = { //BLOCK
use(fn = { // BLOCK
local fun Host.withVararg(p0: Int) {
receiver.withVararg(xs = [p0]) /*~> Unit */
}
@@ -49,7 +49,7 @@ class Host {
}
fun testBoundReceiverParameter(h: Host) {
use(fn = { //BLOCK
use(fn = { // BLOCK
local fun Host.withVararg(p0: Int) {
receiver.withVararg(xs = [p0]) /*~> Unit */
}
@@ -60,7 +60,7 @@ class Host {
}
fun testBoundReceiverExpression() {
use(fn = { //BLOCK
use(fn = { // BLOCK
local fun Host.withVararg(p0: Int) {
receiver.withVararg(xs = [p0]) /*~> Unit */
}