mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
14 lines
289 B
Kotlin
Vendored
14 lines
289 B
Kotlin
Vendored
// "Add ''@IgnoredOnParcel'' annotation" "true"
|
|
// WITH_RUNTIME
|
|
|
|
package com.myapp.activity
|
|
|
|
import android.os.Parcelable
|
|
import kotlinx.android.parcel.IgnoredOnParcel
|
|
import kotlinx.android.parcel.Parcelize
|
|
|
|
@Parcelize
|
|
class Test : Parcelable {
|
|
@IgnoredOnParcel
|
|
val <caret>a = 5
|
|
} |