0a2812f83b
line numbers for stepping. Running JVM instance and read stepping events from it to verify with the test data.
17 lines
212 B
Kotlin
Vendored
17 lines
212 B
Kotlin
Vendored
//FILE: test.kt
|
|
fun cond() = false
|
|
|
|
fun box() {
|
|
if (cond())
|
|
cond()
|
|
else
|
|
false
|
|
}
|
|
|
|
// LINENUMBERS
|
|
// TestKt.box():5
|
|
// TestKt.cond():2
|
|
// TestKt.box():5
|
|
// TestKt.box():8
|
|
// TestKt.box():9
|