https://kotlinlang.org logo
e

electrolobzik

08/06/2020, 4:57 PM
Copy code
package com.test_parcelize
import com.test_parcelize.TestNestedParcelize.*
interface TestI<T : Any>
class TestNestedParcelize : TestI<State> {
    @Parcelize
    data class State(
            val isLoading: Boolean = false
    )
}
In this example `@Parcelize`doesn’t work. I can’t import it, the code analyser breaks. if I replace 
TestNestedParcelize.*
 to 
TestNestedParcelize.State
  everything works. Looks like a bug in the kotlin plugin.
😬 3
a

Alexey Belkov [JB]

08/07/2020, 8:43 AM
Can you please file an issue at http://kotl.in/issue with a sample project to reproduce.
e

electrolobzik

08/07/2020, 10:41 AM