9dda5e4fcd
KT-56177
23 lines
432 B
Kotlin
Vendored
23 lines
432 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// WITH_STDLIB
|
|
// ISSUE: KT-47074
|
|
|
|
package work.hard.parcelableissue
|
|
|
|
import kotlinx.parcelize.Parcelize
|
|
import android.os.Parcelable
|
|
import work.hard.parcelableissue.WorkStore.*
|
|
|
|
interface Store<K, T, V>
|
|
|
|
interface WorkStore : Store<Intent, State, Label> {
|
|
@kotlinx.parcelize.Parcelize
|
|
data class State(
|
|
val isLoading: Boolean,
|
|
) : Parcelable
|
|
|
|
sealed class Intent
|
|
|
|
sealed class Label
|
|
}
|