Files
kotlin-fork/compiler/testData/cfg/bugs/jumpToOuterScope.kt
T
Svetlana Isakova b7f7063bf4 improved postProcess
collect (and cache) reachable instructions for local declarations
after processing all parent instructions
2014-03-07 21:08:18 +04:00

8 lines
95 B
Kotlin
Vendored

fun foo(c: Collection<Int>) {
for (e in c) {
{
break
}
}
}