mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
- generate fake jump instructions so that we can always analyze stack depths - fix stack before break and continue by dropping excessive elements (e.g., *a*.foo(*b*, c?:continue)) - Analyzer rewritten in Kotlin, with more flexible control of CFG traversal #Fixed KT-3340 #Fixed KT-4258 #Fixed KT-7941
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"
|
|
}
|