// CURIOUS_ABOUT writeToParcel, createFromParcel, , describeContents // WITH_RUNTIME // LOCAL_VARIABLE_TABLE import kotlinx.android.parcel.* import android.os.Parcelable @Parcelize class User(val firstName: String, val lastName: String, val age: Int, val isProUser: Boolean) : Parcelable