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

10 lines
180 B
Kotlin
Vendored

// CURIOUS_ABOUT writeToParcel
import android.util.Size
import kotlinx.android.parcel.*
@MagicParcel
class TestNullable(val a: Size?)
@MagicParcel
class TestNotNull(val a: Size)