Files
kotlin-fork/compiler/testData/ir/irText/expressions/booleanConstsInAndAndOrOr.kt
T

7 lines
84 B
Kotlin
Vendored

fun test1(b: Boolean) {
b && return
}
fun test2(b: Boolean) {
b || return
}