9 lines
226 B
Kotlin
Vendored
9 lines
226 B
Kotlin
Vendored
// FIR_DISABLE_LAZY_RESOLVE_CHECKS
|
|
// 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 |