8cdddbfd9d
There is one of checks left unimplemented (FirParcelizePropertyChecker.checkParcelableClassProperty) because it requires huge commonization of detecting which type can be serialized and which not, which is not prioritized job for now
8 lines
191 B
Kotlin
Vendored
8 lines
191 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package test
|
|
|
|
import kotlinx.parcelize.Parcelize
|
|
import android.os.Parcelable
|
|
|
|
@Parcelize
|
|
class User(val firstName: String, val secondName: String, val age: Int) : Parcelable |