Files
kotlin/plugins/android-extensions/android-extensions-compiler/testData/parcel/codegen/listInsideList.kt
Steven Schäfer d93e5d3dc0 Parcelize: Enable ParcelableDeclarationChecker with the parcelize plugin
Previously, the ParcelableDeclarationChecker was only enabled as part of
the view extensions. In particular, the checker was not enabled for the
parcelize test suite.
2020-05-27 02:39:29 +09:00

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