3587a2a08e
When the parameter type is just "Parcelable", we would not pick the wrong (system) class loader anymore.
9 lines
196 B
Kotlin
Vendored
9 lines
196 B
Kotlin
Vendored
// CURIOUS_ABOUT writeToParcel, createFromParcel, <clinit>
|
|
|
|
package test
|
|
|
|
import kotlinx.android.parcel.*
|
|
import android.os.Parcelable
|
|
|
|
@Parcelize
|
|
class Foo(val parcelable: Parcelable): Parcelable |