Files
kotlin-fork/compiler/testData/cfg/bugs/jumpToOuterScope.values
T

20 lines
387 B
Plaintext

== foo ==
fun foo(c: Collection<Int>) {
for (e in c) {
{
break
}
}
}
---------------------
c <v1>: {<: Iterable<Int>} NEW()
{ break } <v3>: * NEW()
{ { break } } <v3>: * COPY
=====================
== anonymous_0 ==
{
break
}
---------------------
=====================