9 lines
182 B
Kotlin
Vendored
9 lines
182 B
Kotlin
Vendored
// CURIOUS_ABOUT: writeToParcel
|
|
// WITH_RUNTIME
|
|
|
|
import kotlinx.parcelize.*
|
|
import android.os.Parcelable
|
|
|
|
@Parcelize
|
|
class Test(val names: List<List<ArrayList<String>>>): Parcelable
|