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

8 lines
101 B
Kotlin
Vendored

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