mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
10 lines
176 B
Kotlin
Vendored
10 lines
176 B
Kotlin
Vendored
// CURIOUS_ABOUT writeToParcel
|
|
|
|
import android.util.Size
|
|
import kotlinx.android.parcel.*
|
|
|
|
@Parcelize
|
|
class TestNullable(val a: Size?)
|
|
|
|
@Parcelize
|
|
class TestNotNull(val a: Size) |