[FIR] Consider call site in argument mapping handling for set operator call

^KT-56542 Fixed
^KT-56714 Fixed
This commit is contained in:
Dmitriy Novozhilov
2023-02-20 17:26:48 +02:00
committed by Space Team
parent cbc8b74e89
commit df47581c5a
12 changed files with 135 additions and 6 deletions
@@ -0,0 +1,11 @@
// FILE: VarHandle.java
public class VarHandle {
public void set(Object... args) {}
}
// FILE: main.kt
class Some {
fun test(handle: VarHandle) {
handle.set(this, false)
}
}