[IR] update testdata: removed extra indentation for function expressions

This commit is contained in:
Zalim Bashorov
2020-11-06 03:26:51 +03:00
committed by teamcityserver
parent cf5ba82453
commit ab8188b032
76 changed files with 168 additions and 168 deletions
@@ -17,28 +17,28 @@ fun fnv(vararg xs: Int): Int {
}
fun test0() {
return useUnit0(fn = local fun fn0() {
return useUnit0(fn = local fun fn0() {
fn0() /*~> Unit */
}
)
}
fun test1() {
return useUnit1(fn = local fun fn1(p0: Int) {
return useUnit1(fn = local fun fn1(p0: Int) {
fn1(x = p0) /*~> Unit */
}
)
}
fun testV0() {
return useUnit0(fn = local fun fnv() {
return useUnit0(fn = local fun fnv() {
fnv() /*~> Unit */
}
)
}
fun testV1() {
return useUnit1(fn = local fun fnv(p0: Int) {
return useUnit1(fn = local fun fnv(p0: Int) {
fnv(xs = [p0]) /*~> Unit */
}
)