[IR] Fix remapping of arguments in LocalDeclarationsLowering.
It only remapped arguments for IrGetValue and not for IrSetValue. This is hitting Compose which has non-standard default argument handling.
This commit is contained in:
committed by
Alexander Udalov
parent
167e60b9fb
commit
a7efa5c98b
@@ -0,0 +1,4 @@
|
||||
fun box(): String {
|
||||
fun foo(s: String = "O") = s
|
||||
return foo() + foo("K")
|
||||
}
|
||||
Reference in New Issue
Block a user