95140f35f8
Replace type arguments with star projection in static methods Fix IR function generation ^KT-42652 Fixed
9 lines
190 B
Kotlin
Vendored
9 lines
190 B
Kotlin
Vendored
// CURIOUS_ABOUT writeToParcel, createFromParcel
|
|
// WITH_RUNTIME
|
|
|
|
import kotlinx.parcelize.*
|
|
import android.os.Parcelable
|
|
|
|
@Parcelize
|
|
data class Box<T : Parcelable>(val box: T) : Parcelable
|