Files
kotlin-fork/compiler/testData/debug/stepping/conjunction.kt
T
2019-11-26 17:59:28 +03:00

34 lines
472 B
Kotlin
Vendored

//FILE: test.kt
fun box() {
val k = if (getA()
&& getB()
&& getC()
&& getD()) {
true
} else {
false
}
}
fun getA() = true
fun getB() = true
fun getC() = false
fun getD() = true
// LINENUMBERS
// TestKt.box():3
// TestKt.getA():13
// TestKt.box():3
// TestKt.box():4
// TestKt.getB():15
// TestKt.box():4
// TestKt.box():5
// TestKt.getC():17
// TestKt.box():5
// TestKt.box():9
// TestKt.box():3
// TestKt.box():11