Is this a bug? In my commonMain I have ```public e...
# multiplatform
z
Is this a bug? In my commonMain I have
Copy code
public expect class MpvNode

public sealed interface MpvNodeValue
then in my jvmCommonMain I have
Copy code
public actual class MpvNode : MpvNodeValue
That produces the error:
Extending sealed classes or interfaces from a different module is prohibited.
They're in the same package in both sourcesets, same module I don't think this happened until I updated my project to kotlin 2.0.0
r
What happens if you do
public expect class MpvNode : MpvNodeValue
?