mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
11 lines
192 B
Kotlin
Vendored
11 lines
192 B
Kotlin
Vendored
// CURIOUS_ABOUT writeToParcel
|
|
// WITH_RUNTIME
|
|
|
|
import android.util.Size
|
|
import kotlinx.android.parcel.*
|
|
|
|
@Parcelize
|
|
class TestNullable(val a: Size?)
|
|
|
|
@Parcelize
|
|
class TestNotNull(val a: Size) |