a743669bc9
These objects are visible from annotation processors and should not refer to the type parameters of enclosing parcelable classes.
10 lines
212 B
Kotlin
Vendored
10 lines
212 B
Kotlin
Vendored
// CURIOUS_ABOUT writeToParcel, createFromParcel
|
|
// RENDER_ANNOTATIONS
|
|
// WITH_RUNTIME
|
|
|
|
import kotlinx.parcelize.*
|
|
import android.os.Parcelable
|
|
|
|
@Parcelize
|
|
data class Box<T : Parcelable>(val box: T) : Parcelable
|