<@U0JU7LN3T>: Definitely. You can call class priva...
# announcements
i
@semesc: Definitely. You can call class private constructor from its companion object methods:
Copy code
class A private constructor() {
    companion object {
        fun create(): A = A()
    }
}