[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
@@ -24,21 +24,21 @@ fun C.extensionBoth(i: Int, s: String = "", vararg t: String) {
fun testExtensionVararg() {
use(f = local fun extensionVararg(p0: C, p1: Int) {
extensionVararg($receiver = p0, i = p1)
p0.extensionVararg(i = p1)
}
)
}
fun testExtensionDefault() {
use(f = local fun extensionDefault(p0: C, p1: Int) {
extensionDefault($receiver = p0, i = p1)
p0.extensionDefault(i = p1)
}
)
}
fun testExtensionBoth() {
use(f = local fun extensionBoth(p0: C, p1: Int) {
extensionBoth($receiver = p0, i = p1)
p0.extensionBoth(i = p1)
}
)
}