2e049c1208
The fix is a bit hacky, but it's very simple. In addition, it still does not handle the case where the receiver is a lambda function. But such case seems to be fairly rare in practice.
10 lines
179 B
Kotlin
Vendored
10 lines
179 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun foo(x: Int, f: () -> Unit, y: Int) {}
|
|
|
|
fun bar() {
|
|
var x: Int?
|
|
x = 4
|
|
foo(x, { x = null; x<!UNSAFE_CALL!>.<!>hashCode() }, x)
|
|
}
|