If I try to do something like this in kotlin ``` p...
# language-proposals
n
If I try to do something like this in kotlin
Copy code
private var myField: MyField?
    internal set
I get the error “Setter visibility must the same or less permissive than property visibility.” What’s the reasoning behind this validation? To me it seems perfectly valid to provide a setter with no getter for a field.