Is there any way to implement a class like this, w...
# serialization
z
Is there any way to implement a class like this, without having to override its parameters and still getting them serialized?
Copy code
@Serializable
open class Test<T>(
    val test: T
)

@Serializable
class TestImpl : Test<String>()
// This doesn't work cause it needs the parameter
b
As far as I know it does not work.