6f2bb8c05a
Remove the "_ir" suffix. It was originally used to distinguish tests on
the JVM IR backend from the old JVM backend ("_old"), but the latter are
removed now.
12 lines
258 B
Kotlin
Vendored
12 lines
258 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !RENDER_DIAGNOSTICS_FULL_TEXT
|
|
// TARGET_BACKEND: JVM_IR
|
|
inline fun inlineFun1(p: () -> Unit) {
|
|
p()
|
|
<!INLINE_CALL_CYCLE!>inlineFun2(p)<!>
|
|
}
|
|
|
|
inline fun inlineFun2(p: () -> Unit) {
|
|
p()
|
|
<!INLINE_CALL_CYCLE!>inlineFun1(p)<!>
|
|
} |