mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
14 lines
374 B
Kotlin
Vendored
14 lines
374 B
Kotlin
Vendored
package test
|
|
|
|
import kotlinx.android.parcel.Parcelize
|
|
import android.os.Parcelable
|
|
import android.os.Parcel
|
|
|
|
open class Delegate : Parcelable {
|
|
override fun writeToParcel(dest: Parcel?, flags: Int) {}
|
|
override fun describeContents() = 0
|
|
}
|
|
|
|
@Parcelize
|
|
class Test : Parcelable <error descr="[PLUGIN_ERROR] Delegating 'Parcelable' is not allowed">by</error> Delegate()
|