Files
kotlin/compiler/testData/codegen/box/controlStructures/breakContinueInExpressions/continueInExpr.kt
dnpetrov c24e6b5698 Support 'break' and 'continue' in expressions
- 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
2015-06-25 17:40:55 +03:00

8 lines
122 B
Kotlin
Vendored

fun box(): String {
var s = "OK"
for (i in 1..3) {
s = s + if (i<2) "" else continue
}
return s
}