// CURIOUS_ABOUT: writeToParcel, createFromParcel, // WITH_STDLIB //FILE: test.kt package test import kotlinx.parcelize.* import android.os.Parcelable @Parcelize class Foo(val bar: Bar): Parcelable @Parcelize class Bar(val foo: Foo?) : Parcelable