``` class Test private constructor() { compani...
# announcements
r
Copy code
class Test private constructor() {
    companion object {
        fun make() = Test()
    }
}
val test = Test.make()