mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
14 lines
264 B
Kotlin
Vendored
14 lines
264 B
Kotlin
Vendored
// CURIOUS_ABOUT writeToParcel, createFromParcel, <clinit>
|
|
// WITH_RUNTIME
|
|
//FILE: test.kt
|
|
package test
|
|
|
|
import kotlinx.android.parcel.*
|
|
import android.os.Parcelable
|
|
|
|
@Parcelize
|
|
class Foo(val bar: Bar): Parcelable
|
|
|
|
@Parcelize
|
|
class Bar(val foo: Foo?) : Parcelable
|