[FIR Native] KT-58549: Ensure Cloneable is accessible in native

This commit is contained in:
Nikolay Lunyak
2023-05-16 14:30:58 +03:00
committed by Space Team
parent 5e39bb97a0
commit 5af4230f46
5 changed files with 30 additions and 0 deletions
@@ -0,0 +1,6 @@
// ISSUE: KT-58549
fun main() {
val x: kotlin.Cloneable = if (true) intArrayOf(1) else longArrayOf(1)
x
}