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
While is very important to not have static or const items of such types, during the evaluation of a static or const item we might want to work with intermediate values of this type.
E.g.
constFOO:usize = {letmut x = [5,6,7];
x.swap(0,1);
x[0]// should be `6`};