Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/SmartCastPointsResolveRequired1.dump
T

18 lines
313 B
Plaintext

Resolve target: value-parameter val x: kotlin.Any?
----------------------------------------------
fun foo(x: Any?, p: Int) {
if (p > 0) {
val x = f()
print(x!!)
}
else {
val x = g()
print(x!!)
}
<caret>x.hashCode()
}
fun f(): Any? = null
fun g(): Any? = null