Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
SmartCastPointsResolveRequired2.dump
blob: efc0474fe38302c55d20faee38c92f2365c708f8 [
file
]
Resolve
target
:
value
-
parameter x
:
kotlin
.
Any
?
----------------------------------------------
fun foo
(
x
:
Any
?)
{
if
(
x
==
null
)
{
val error
=
f
()
error
(
"error"
)
}
<caret>
x
.
hashCode
()
}
fun f
():
(
String
)
->
Unit
=
{}