Files
kotlin/plugins/android-extensions/android-extensions-compiler/testData/parcel/codegen/nullableNotNullSize.kt

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)