Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/LabeledBreak.dump
T
2015-04-29 14:03:11 +03:00

17 lines
322 B
Plaintext
Vendored

Resolve target: val x: kotlin.Any?
----------------------------------------------
fun foo() {
MainLoop@
for (i in 1..10) {
val x = take()
if (x == null) {
while (true) {
break@MainLoop
}
}
<caret>x.hashCode()
}
}
fun take(): Any? = null