mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
14 lines
247 B
Kotlin
Vendored
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"
|
|
}
|