a7efa5c98b
It only remapped arguments for IrGetValue and not for IrSetValue. This is hitting Compose which has non-standard default argument handling.
4 lines
66 B
Kotlin
Vendored
4 lines
66 B
Kotlin
Vendored
inline fun foo(s: String = "O") = s
|
|
|
|
fun box() = foo() + foo("K")
|