Hi,
I have this simple inheritance:
@Named
class SomeClass : SomeBaseClass("hi")
open class SomeBaseClass(val someProperty: String)
It compiles and works fine. However, when I have no-arg compiler plugin I get a warning:
SomeClass.kt: (6, 7): Zero-argument constructor was not found in the superclass
I understand the warning, however I would like to remove it. Shouldn’t no-arg plugin remove this warning?
Thanks