Remove JVM_OLD-specific test data from backend diagnostic tests

Old JVM backend is only used as a fallback in Evaluate Expression in the
IDE at this point, so it's supposed to compile only correct code anyway.
This commit is contained in:
Alexander Udalov
2023-06-22 18:22:34 +02:00
committed by Space Team
parent b03e50129e
commit 815ab15313
63 changed files with 0 additions and 1269 deletions
@@ -1,11 +0,0 @@
// !RENDER_DIAGNOSTICS_FULL_TEXT
// TARGET_BACKEND: JVM_OLD
inline fun inlineFun1(crossinline p: () -> Unit) {
object {
fun method() { <!INLINE_CALL_CYCLE, INLINE_CALL_CYCLE!>inlineFun2(p)<!> }
}
}
inline fun inlineFun2(crossinline p: () -> Unit) {
<!INLINE_CALL_CYCLE, INLINE_CALL_CYCLE!>inlineFun1(p)<!>
}