Files
kotlin-fork/compiler/testData/cfg/expressions/LazyBooleans.kt
T
2014-03-07 21:08:14 +04:00

17 lines
221 B
Kotlin
Vendored

fun lazyBooleans(a : Boolean, b : Boolean) : Unit {
if (a) {
1
}
else {
2
}
3
if (a && b) 5 else 6
7
if (a || b) 8 else 9
10
if (a) 11
12
if (a) else 13
14
}