``` object TestT { val someRunnable: () -> ...
# kontributors
s
Copy code
object TestT {
    val someRunnable: () -> Unit = { otherRunnable.invoke() }
    val otherRunnable = { someRunnable.invoke() }
}
My idea turns into brick with this code 😞 Also strange that no problems found for it, like otherRunnable was not initialized.... Looks like some recursive fail....