[FIR2IR] Re-use applyCallArguments for IrDelegatedConstructorCall

This commit is contained in:
Mikhail Glukhikh
2020-04-13 12:01:56 +03:00
parent 1ba160b3de
commit 1500131eb0
7 changed files with 60 additions and 78 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class A(val result: String) {
constructor(x: Int = 11, y: Int = 22, z: Int = 33) : this("$x$y$z")
}