mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
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
|