Files
kotlin-fork/compiler/testData/diagnostics/nativeTests/cloneableInNative.fir.kt
T
Nikolay Lunyak 70605c84df [FIR Native] KT-58549: Get rid of the builtin provider
According to
`FirNativeCodegenBoxTestGenerated.testNestedClassesInAnnotations`,
the annotation
`kotlin.internal.PlatformDependent` is
unresolved reference.

^KT-58549 Fixed
2023-06-01 10:27:54 +00:00

7 lines
142 B
Kotlin
Vendored

// ISSUE: KT-58549
fun main() {
val x: <!UNRESOLVED_REFERENCE!>kotlin.Cloneable<!> = if (true) intArrayOf(1) else longArrayOf(1)
x
}