Resolve target: value-parameter x: kotlin.Any? ---------------------------------------------- fun foo(x: Any?) { if (x == null) { val error = f() error("error") } x.hashCode() } fun f(): (String) -> Unit = {}