Files
kotlin-fork/plugins/parcelize/parcelize-compiler/testData/codegen/unsignedPrimitiveArrays.kt
T
2021-10-07 13:08:45 +03:00

19 lines
378 B
Kotlin
Vendored

// CURIOUS_ABOUT: writeToParcel, createFromParcel
// WITH_RUNTIME
// IGNORE_BACKEND: JVM
import kotlinx.parcelize.*
import android.os.Parcelable
@Parcelize
data class Test(
val a: UByteArray,
val b: UShortArray,
val c: UIntArray,
val d: ULongArray,
val e: UByteArray?,
val f: UShortArray?,
val g: UIntArray?,
val h: ULongArray?,
) : Parcelable