[K/N][Tests] Move codegen test sources cycles..innerClass

^KT-61259
This commit is contained in:
Vladimir Sukharev
2023-12-13 23:53:55 +01:00
committed by Space Team
parent 35d2be25b2
commit 71a834b778
282 changed files with 2376 additions and 756 deletions
@@ -0,0 +1,24 @@
/*
* Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file.
*/
package codegen.escapeAnalysis.recursion
import kotlin.test.*
class A {
var f: A? = null
}
fun foo(k: Int, a1: A, a2: A): A {
val a3 = A()
if (k == 0)
return a1
a3.f = a1
return foo(k - 1, a2, a3)
}
@Test fun runTest() {
foo(3, A(), A()).toString()
}