Files
kotlin/compiler/testData/codegen/box/controlStructures/breakContinueInExpressions/breakInDoWhile.kt

10 lines
138 B
Kotlin
Vendored

fun box(): String {
val ok: String? = "OK"
var res = ""
do {
res += ok ?: break
} while (false)
return res
}