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 = {}