[IR] update testdata: removed extra indentation for function expressions
This commit is contained in:
committed by
teamcityserver
parent
cf5ba82453
commit
ab8188b032
Vendored
+4
-4
@@ -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 */
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user