package i_love_companion_objects interface SomeInterface { companion object; // Semicolon needed to avoid next word ("suspend" in this case) // being picked up as the companion object name. // BTW, here, we keep the default one, which is "Companion". // This is a random function, we don't really care about it, the focus is companion objects. suspend fun someFunction() }