[IR] update testdata: support for IrDelegatingConstructorCall

This commit is contained in:
Zalim Bashorov
2020-11-06 02:24:57 +03:00
committed by teamcityserver
parent 84d6e43590
commit b518c19b38
198 changed files with 393 additions and 390 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
data class Some<T : Any?> {
constructor(value: T) /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*Any*/()
/* InstanceInitializerCall */
}
@@ -69,7 +69,7 @@ interface MyList<T : Any?> : List<Some<T>> {
open class SomeList<T : Any?> : MyList<T>, ArrayList<Some<T>> {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*ArrayList*/<@FlexibleNullability Some<T>?>()
/* InstanceInitializerCall */
}
@@ -114,7 +114,7 @@ open class SomeList<T : Any?> : MyList<T>, ArrayList<Some<T>> {
class FinalList : SomeList<String> {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*SomeList*/<String>()
/* InstanceInitializerCall */
}