7d7b9262e7
These line number tests only tested that a set of line numbers where present in the java bytecode. Not that they would be hit in the right order by the debugger. Moving them to stepping tests fixes that. This exposes a couple of issues (in particular around try-catch-finally) that should be fixed. A number of tests are marked as failing now. Will investigate and work on fixes next.
15 lines
218 B
Kotlin
Vendored
15 lines
218 B
Kotlin
Vendored
// FILE: test.kt
|
|
|
|
fun box() {
|
|
val x =
|
|
42
|
|
}
|
|
|
|
// IGNORE_BACKEND: JVM_IR
|
|
// The JVM_IR backend does not hit line 4. That should be fixed.
|
|
|
|
// LINENUMBERS
|
|
// test.kt:5 box
|
|
// test.kt:4 box
|
|
// test.kt:6 box
|