Move parcelize checkers testdata to :parcelize-compiler module
This commit is contained in:
committed by
teamcityserver
parent
a093052b77
commit
b84ee64994
@@ -0,0 +1,11 @@
|
||||
package test
|
||||
|
||||
import kotlinx.parcelize.Parcelize
|
||||
import android.os.Parcel
|
||||
import android.os.Parcelable
|
||||
|
||||
@Suppress("UNUSED_PARAMETER")
|
||||
class User(firstName: String, secondName: String, val age: Int) : Parcelable {
|
||||
override fun writeToParcel(p0: Parcel?, p1: Int) {}
|
||||
override fun describeContents() = 0
|
||||
}
|
||||
Reference in New Issue
Block a user