Hullaballoonatic
06/01/2019, 6:14 PMabstract class Foo() {
lateinit var foo: Int
constructor(foo: Int) : this() {
this.foo = foo
}
}
class Bar : Foo()
val bar = Bar(2)
(yes, i know i'm leaking this
in the first constructor)
as well is it possible to define static members of inheritors? (which is basically what a constructor is...)