Files
kotlin-fork/compiler/testData/debug/stepping/IfTrueThenFalse.kt
T
Jiaxiang Chen 0a2812f83b Add a JVM backend debug information test, this commit is for verifying
line numbers for stepping.

Running JVM instance and read stepping events from it to verify with the
test data.
2019-10-05 10:41:11 +02:00

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