[FIR] KT-57809: Allow external constructors without arguments
The constructor with the required parameters may not have been defined, and since JS/IR box tests pass, it seems, we don't have to resolve into anything meaningful. We could generate the appropriate constructor like dynamic type members are generated, but, again, K1 IR doesn't even contain a delegating constructor call. ^KT-57809 Fixed
This commit is contained in:
committed by
Space Team
parent
96a25b7b7d
commit
247f5529d2
+8
@@ -0,0 +1,8 @@
|
||||
// FIR_IDENTICAL
|
||||
// ISSUE: KT-57809
|
||||
|
||||
package bar.baz
|
||||
|
||||
open external class LIcon(options: String)
|
||||
|
||||
external class DivIcon(options: String) : LIcon // No value passed for parameter 'options'
|
||||
Reference in New Issue
Block a user