You don't need that. The companion object should a...
# announcements
r
You don't need that. The companion object should always be initialized first. This should work fine.
Copy code
class MyTest {
    override fun toString() = "initialized with $X"

    companion object {
        const val X = "Context"
    }
}