Would shorter syntax for Abstract inheritance be feasible?
abstract class Abstract<T>(val param: T)
class Test : Abstract("string")
class Test : Abstract<>("string")
Thanks,
Fabian
Would shorter syntax for Abstract inheritance be feasible?
abstract class Abstract<T>(val param: T)
class Test : Abstract("string")
class Test : Abstract<>("string")
Thanks,
Fabian
There are at least two reasons why we don’t have this:
"string"
),While the second point is somewhat a matter of taste, the first one is rather important for smooth tooling.