[FIR JS] Reproduce KT-64548

Running the FIR tests leads to the
crash.

^KT-64548
This commit is contained in:
Nikolay Lunyak
2024-01-08 14:37:42 +02:00
committed by Space Team
parent e60a436068
commit 9a598026c8
5 changed files with 36 additions and 0 deletions
@@ -0,0 +1,12 @@
// ISSUE: KT-64548
open external class Light {
constructor(hex: Number = definedExternally, intensity: Number = definedExternally)
constructor(hex: String = definedExternally, intensity: Number = definedExternally)
}
open external class HemisphereLight : Light {
constructor(intensity: Number = definedExternally)
}
fun box() = "OK"