poohbar
class Parent { companion object { fun foo() = Child("field") // compiler error } class Child private constructor( val field: String ) }