17 lines
322 B
Plaintext
Vendored
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
|