Files
kotlin/compiler/testData/codegen/box/controlStructures/breakContinueInExpressions/popSizes.kt
2019-12-09 17:24:26 +03:00

14 lines
247 B
Kotlin
Vendored

fun foo(x: Long, y: Int, z: Double, s: String) {}
fun box(): String {
while (true) {
try {
foo(0, 0, 0.0, "" + continue)
}
finally {
foo(0, 0, 0.0, "" + break)
}
}
return "OK"
}