Tests: remove stepping tests on old JVM backend

This commit is contained in:
Alexander Udalov
2023-12-07 18:51:17 +01:00
committed by Space Team
parent f39c72360d
commit 5e330acd28
109 changed files with 175 additions and 1231 deletions
+5 -5
View File
@@ -2,10 +2,10 @@
// FILE: foo.kt
import bar
fun foo(x: Int): Int {
if (x >= 0) { // 4
return x // 5
if (x >= 0) { // 5
return x // 6
}
return bar(x) // 7
return bar(x) // 8
}
// FILE: test.kt
@@ -21,7 +21,7 @@ fun bar(x: Int) =
foo(x)
}
// EXPECTATIONS JVM JVM_IR
// EXPECTATIONS JVM_IR
// test.kt:14 box
// foo.kt:5 foo
// foo.kt:8 foo
@@ -44,4 +44,4 @@ fun bar(x: Int) =
// foo.kt:5 foo
// foo.kt:6 foo
// test.kt:22 bar
// test.kt:15 box
// test.kt:15 box