You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a Slack discussion there was an argument that this should not be supported at all and rejected since values in a set should be immutable (which a set is not). I'd argue that the usage here which does not modify the contained values at all could still be supported; we could still reject mutating operations on vs at runtime.
The text was updated successfully, but these errors were encountered:
I would expect the following code to either work at runtime or be outright rejected:
I originally saw this with an initialization of the form
In a Slack discussion there was an argument that this should not be supported at all and rejected since values in a
set
should be immutable (which aset
is not). I'd argue that the usage here which does not modify the contained values at all could still be supported; we could still reject mutating operations onvs
at runtime.The text was updated successfully, but these errors were encountered: