edwinRNDR
08/28/2019, 8:14 PMstreetsofboston
08/28/2019, 8:20 PMabstract class A(val a: A?)
object B: A(C)
object C: A(B)
...
println("${B.a} and ${C.a}")
null
and which will be properly initialized.edwinRNDR
08/28/2019, 8:41 PMstreetsofboston
08/28/2019, 8:42 PM