is this what you mean? still doesn’t compile ``` i...
# eap
e
is this what you mean? still doesn’t compile
Copy code
inline class Password(val password: MutableList<String>) {
  var foo: String
    set(value) {
      password.add(value)
    }
}