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
On line 47 a constant set is created that contains duplicate elements, but the line is not marked as expecting an error. Either the duplicate elements should be removed or the line should be annotated.
The text was updated successfully, but these errors were encountered:
Let e1 … en be the constant element expressions of s in source order, and let v1 … vn be their respective constant values. Evaluation of s creates an unmodifiable object implementing Set with v1 … vn as elements, except that if any of v1 … vn are equal, only the first value of such equal values is included.
So, according to the above, I believe, that it is not an error. If there are duplicating elements, then, only the first one of them should be taken.
On line 47 a constant set is created that contains duplicate elements, but the line is not marked as expecting an error. Either the duplicate elements should be removed or the line should be annotated.
The text was updated successfully, but these errors were encountered: