[FIR] Don't require delegated constructor calls for expect constructors

#KT-59640 Fixed
This commit is contained in:
Kirill Rakhman
2023-06-30 13:05:56 +03:00
committed by Space Team
parent 028921ade1
commit c7ae3c75db
2 changed files with 4 additions and 2 deletions
@@ -7,7 +7,7 @@ expect open class A {
}
expect class B : A {
<!EXPLICIT_DELEGATION_CALL_REQUIRED!>constructor(i: Int)<!>
constructor(i: Int)
constructor() : super("B")
}