[FIR JS] Prepare the test data for FIR
This commit is contained in:
committed by
Space Team
parent
0e38d0ebd2
commit
73c89a5d9d
+17
@@ -0,0 +1,17 @@
|
||||
// !DIAGNOSTICS: -DEBUG_INFO_MISSING_UNRESOLVED
|
||||
|
||||
external open class Base(x: Int) {
|
||||
constructor(x: String) : this(23)
|
||||
|
||||
constructor(x: String, y: String) : this("")
|
||||
}
|
||||
|
||||
external open class Derived1() : Base(23) {
|
||||
constructor(x: Byte) : super(23)
|
||||
|
||||
constructor(x: String) : super("")
|
||||
|
||||
constructor(x: String, y: String) : super("")
|
||||
}
|
||||
|
||||
external open class Derived2() : Base("")
|
||||
Reference in New Issue
Block a user