[IR] update testdata: better support for IrConstructorCall

This commit is contained in:
Zalim Bashorov
2020-11-06 01:22:57 +03:00
committed by teamcityserver
parent 197f5ca885
commit 2a19dc32f2
70 changed files with 172 additions and 136 deletions
@@ -22,7 +22,7 @@ data class Test<T : Any?> {
}
fun copy(x: T = #x, y: String = #y): Test<T> {
return TODO("IrConstructorCall")
return Test<T>(x = x, y = y)
}
override fun toString(): String {