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
Currently, 1i + 1i..1i + 1i is parsed as 1i + (1i..(1i + 1i)). This seems problematic. I would expect it to be parsed as (1i + 1i)..(1i + 1i) (to match with how the current slicing syntax behaves), or possibly as 1i + (1i..1i) + 1i.