Tests: remove stepping tests on old JVM backend
This commit is contained in:
committed by
Space Team
parent
f39c72360d
commit
5e330acd28
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user