blob: 58e8d42853dd9972d68c2e75bc04518f888c7f9f [file]
//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