mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
Previously, the ParcelableDeclarationChecker was only enabled as part of the view extensions. In particular, the checker was not enabled for the parcelize test suite.
8 lines
186 B
Kotlin
Vendored
8 lines
186 B
Kotlin
Vendored
// CURIOUS_ABOUT writeToParcel
|
|
// WITH_RUNTIME
|
|
|
|
import kotlinx.android.parcel.*
|
|
import android.os.Parcelable
|
|
|
|
@Parcelize
|
|
class Test(val names: List<List<ArrayList<String>>>) : Parcelable |