// CURIOUS_ABOUT writeToParcel, createFromParcel, , describeContents // WITH_RUNTIME import kotlinx.android.parcel.* import android.os.Parcelable class Value(val x: Int) @Parcelize class Test(val value: @RawValue Value) : Parcelable