zt
05/26/2024, 8:56 PMpublic expect class MpvNode
public sealed interface MpvNodeValue
then in my jvmCommonMain I have
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.0russhwolf
05/26/2024, 9:28 PMpublic expect class MpvNode : MpvNodeValue
?